pub enum BlendMode {
Show 29 variants
Clear,
Source,
Destination,
SourceOver,
DestinationOver,
SourceIn,
DestinationIn,
SourceOut,
DestinationOut,
SourceAtop,
DestinationAtop,
Xor,
Plus,
Modulate,
Screen,
Overlay,
Darken,
Lighten,
ColorDodge,
ColorBurn,
HardLight,
SoftLight,
Difference,
Exclusion,
Multiply,
Hue,
Saturation,
Color,
Luminosity,
}
Expand description
A blending mode.
Variants
Clear
Replaces destination with zero: fully transparent.
Source
Replaces destination.
Destination
Preserves destination.
SourceOver
Source over destination.
DestinationOver
Destination over source.
SourceIn
Source trimmed inside destination.
DestinationIn
Destination trimmed by source.
SourceOut
Source trimmed outside destination.
DestinationOut
Destination trimmed outside source.
SourceAtop
Source inside destination blended with destination.
DestinationAtop
Destination inside source blended with source.
Xor
Each of source and destination trimmed outside the other.
Plus
Sum of colors.
Modulate
Product of premultiplied colors; darkens destination.
Screen
Multiply inverse of pixels, inverting result; brightens destination.
Overlay
Multiply or screen, depending on destination.
Darken
Darker of source and destination.
Lighten
Lighter of source and destination.
ColorDodge
Brighten destination to reflect source.
ColorBurn
Darken destination to reflect source.
HardLight
Multiply or screen, depending on source.
SoftLight
Lighten or darken, depending on source.
Difference
Subtract darker from lighter with higher contrast.
Exclusion
Subtract darker from lighter with lower contrast.
Multiply
Multiply source with destination, darkening image.
Hue
Hue of source with saturation and luminosity of destination.
Saturation
Saturation of source with hue and luminosity of destination.
Color
Hue and saturation of source with luminosity of destination.
Luminosity
Luminosity of source with hue and saturation of destination.
Trait Implementations
sourceimpl Ord for BlendMode
impl Ord for BlendMode
sourceimpl PartialOrd<BlendMode> for BlendMode
impl PartialOrd<BlendMode> for BlendMode
sourcefn partial_cmp(&self, other: &BlendMode) -> Option<Ordering>
fn partial_cmp(&self, other: &BlendMode) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for BlendMode
impl Eq for BlendMode
impl StructuralEq for BlendMode
impl StructuralPartialEq for BlendMode
Auto Trait Implementations
impl RefUnwindSafe for BlendMode
impl Send for BlendMode
impl Sync for BlendMode
impl Unpin for BlendMode
impl UnwindSafe for BlendMode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more