pub enum BlendMode {
Show 26 variants
Clear = 0,
Source = 1,
Over = 2,
In = 3,
Out = 4,
Atop = 5,
Dest = 6,
DestOver = 7,
DestIn = 8,
DestOut = 9,
DestAtop = 10,
Xor = 11,
Add = 12,
Saturate = 13,
Multiply = 14,
Screen = 15,
Overlay = 16,
Darken = 17,
Lighten = 18,
ColourDodge = 19,
ColourBurn = 20,
HardLight = 21,
SoftLight = 22,
Difference = 23,
Exclusion = 24,
Last = 25,
}Variants§
Clear = 0
Clear -> VIPS_BLEND_MODE_CLEAR = 0
Source = 1
Source -> VIPS_BLEND_MODE_SOURCE = 1
Over = 2
Over -> VIPS_BLEND_MODE_OVER = 2
In = 3
In -> VIPS_BLEND_MODE_IN = 3
Out = 4
Out -> VIPS_BLEND_MODE_OUT = 4
Atop = 5
Atop -> VIPS_BLEND_MODE_ATOP = 5
Dest = 6
Dest -> VIPS_BLEND_MODE_DEST = 6
DestOver = 7
DestOver -> VIPS_BLEND_MODE_DEST_OVER = 7
DestIn = 8
DestIn -> VIPS_BLEND_MODE_DEST_IN = 8
DestOut = 9
DestOut -> VIPS_BLEND_MODE_DEST_OUT = 9
DestAtop = 10
DestAtop -> VIPS_BLEND_MODE_DEST_ATOP = 10
Xor = 11
Xor -> VIPS_BLEND_MODE_XOR = 11
Add = 12
Add -> VIPS_BLEND_MODE_ADD = 12
Saturate = 13
Saturate -> VIPS_BLEND_MODE_SATURATE = 13
Multiply = 14
Multiply -> VIPS_BLEND_MODE_MULTIPLY = 14
Screen = 15
Screen -> VIPS_BLEND_MODE_SCREEN = 15
Overlay = 16
Overlay -> VIPS_BLEND_MODE_OVERLAY = 16
Darken = 17
Darken -> VIPS_BLEND_MODE_DARKEN = 17
Lighten = 18
Lighten -> VIPS_BLEND_MODE_LIGHTEN = 18
ColourDodge = 19
ColourDodge -> VIPS_BLEND_MODE_COLOUR_DODGE = 19
ColourBurn = 20
ColourBurn -> VIPS_BLEND_MODE_COLOUR_BURN = 20
HardLight = 21
HardLight -> VIPS_BLEND_MODE_HARD_LIGHT = 21
SoftLight = 22
SoftLight -> VIPS_BLEND_MODE_SOFT_LIGHT = 22
Difference = 23
Difference -> VIPS_BLEND_MODE_DIFFERENCE = 23
Exclusion = 24
Exclusion -> VIPS_BLEND_MODE_EXCLUSION = 24
Last = 25
Last -> VIPS_BLEND_MODE_LAST = 25
Trait Implementations§
Source§impl FromPrimitive for BlendMode
impl FromPrimitive for BlendMode
Source§fn from_i64(n: i64) -> Option<Self>
fn from_i64(n: i64) -> Option<Self>
i64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u64(n: u64) -> Option<Self>
fn from_u64(n: u64) -> Option<Self>
u64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_isize(n: isize) -> Option<Self>
fn from_isize(n: isize) -> Option<Self>
isize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i8(n: i8) -> Option<Self>
fn from_i8(n: i8) -> Option<Self>
i8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i16(n: i16) -> Option<Self>
fn from_i16(n: i16) -> Option<Self>
i16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i32(n: i32) -> Option<Self>
fn from_i32(n: i32) -> Option<Self>
i32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i128(n: i128) -> Option<Self>
fn from_i128(n: i128) -> Option<Self>
i128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read moreSource§fn from_usize(n: usize) -> Option<Self>
fn from_usize(n: usize) -> Option<Self>
usize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u8(n: u8) -> Option<Self>
fn from_u8(n: u8) -> Option<Self>
u8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u16(n: u16) -> Option<Self>
fn from_u16(n: u16) -> Option<Self>
u16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u32(n: u32) -> Option<Self>
fn from_u32(n: u32) -> Option<Self>
u32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u128(n: u128) -> Option<Self>
fn from_u128(n: u128) -> Option<Self>
u128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read moreSource§impl ToPrimitive for BlendMode
impl ToPrimitive for BlendMode
Source§fn to_i64(&self) -> Option<i64>
fn to_i64(&self) -> Option<i64>
self to an i64. If the value cannot be
represented by an i64, then None is returned.Source§fn to_u64(&self) -> Option<u64>
fn to_u64(&self) -> Option<u64>
self to a u64. If the value cannot be
represented by a u64, then None is returned.Source§fn to_isize(&self) -> Option<isize>
fn to_isize(&self) -> Option<isize>
self to an isize. If the value cannot be
represented by an isize, then None is returned.Source§fn to_i8(&self) -> Option<i8>
fn to_i8(&self) -> Option<i8>
self to an i8. If the value cannot be
represented by an i8, then None is returned.Source§fn to_i16(&self) -> Option<i16>
fn to_i16(&self) -> Option<i16>
self to an i16. If the value cannot be
represented by an i16, then None is returned.Source§fn to_i32(&self) -> Option<i32>
fn to_i32(&self) -> Option<i32>
self to an i32. If the value cannot be
represented by an i32, then None is returned.Source§fn to_i128(&self) -> Option<i128>
fn to_i128(&self) -> Option<i128>
self to an i128. If the value cannot be
represented by an i128 (i64 under the default implementation), then
None is returned. Read moreSource§fn to_usize(&self) -> Option<usize>
fn to_usize(&self) -> Option<usize>
self to a usize. If the value cannot be
represented by a usize, then None is returned.Source§fn to_u8(&self) -> Option<u8>
fn to_u8(&self) -> Option<u8>
self to a u8. If the value cannot be
represented by a u8, then None is returned.Source§fn to_u16(&self) -> Option<u16>
fn to_u16(&self) -> Option<u16>
self to a u16. If the value cannot be
represented by a u16, then None is returned.Source§fn to_u32(&self) -> Option<u32>
fn to_u32(&self) -> Option<u32>
self to a u32. If the value cannot be
represented by a u32, then None is returned.Source§fn to_u128(&self) -> Option<u128>
fn to_u128(&self) -> Option<u128>
self to a u128. If the value cannot be
represented by a u128 (u64 under the default implementation), then
None is returned. Read more