#[repr(C)]pub enum JxlBlendMode {
Replace = 0,
Add = 1,
Blend = 2,
MULADD = 3,
MUL = 4,
}Expand description
Frame blend modes. When decoding, if coalescing is enabled (default), this can be ignored.
Variants§
Trait Implementations§
Source§impl Clone for JxlBlendMode
impl Clone for JxlBlendMode
Source§fn clone(&self) -> JxlBlendMode
fn clone(&self) -> JxlBlendMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for JxlBlendMode
impl Debug for JxlBlendMode
Source§impl Hash for JxlBlendMode
impl Hash for JxlBlendMode
Source§impl PartialEq for JxlBlendMode
impl PartialEq for JxlBlendMode
impl Copy for JxlBlendMode
impl Eq for JxlBlendMode
impl StructuralPartialEq for JxlBlendMode
Auto Trait Implementations§
impl Freeze for JxlBlendMode
impl RefUnwindSafe for JxlBlendMode
impl Send for JxlBlendMode
impl Sync for JxlBlendMode
impl Unpin for JxlBlendMode
impl UnwindSafe for JxlBlendMode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more