#[repr(C)]pub enum StyleMixBlendMode {
Show 16 variants
Normal = 0,
Multiply = 1,
Screen = 2,
Overlay = 3,
Darken = 4,
Lighten = 5,
ColorDodge = 6,
ColorBurn = 7,
HardLight = 8,
SoftLight = 9,
Difference = 10,
Exclusion = 11,
Hue = 12,
Saturation = 13,
Color = 14,
Luminosity = 15,
}Variants§
Normal = 0
Multiply = 1
Screen = 2
Overlay = 3
Darken = 4
Lighten = 5
ColorDodge = 6
ColorBurn = 7
HardLight = 8
SoftLight = 9
Difference = 10
Exclusion = 11
Hue = 12
Saturation = 13
Color = 14
Luminosity = 15
Trait Implementations§
Source§impl Clone for StyleMixBlendMode
impl Clone for StyleMixBlendMode
Source§fn clone(&self) -> StyleMixBlendMode
fn clone(&self) -> StyleMixBlendMode
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 StyleMixBlendMode
impl Debug for StyleMixBlendMode
Source§impl Default for StyleMixBlendMode
impl Default for StyleMixBlendMode
Source§fn default() -> StyleMixBlendMode
fn default() -> StyleMixBlendMode
Returns the “default value” for a type. Read more
Source§impl Display for StyleMixBlendMode
impl Display for StyleMixBlendMode
Source§impl From<StyleMixBlendMode> for CssProperty
impl From<StyleMixBlendMode> for CssProperty
Source§fn from(e: StyleMixBlendMode) -> Self
fn from(e: StyleMixBlendMode) -> Self
Converts to this type from the input type.
Source§impl Hash for StyleMixBlendMode
impl Hash for StyleMixBlendMode
Source§impl Ord for StyleMixBlendMode
impl Ord for StyleMixBlendMode
Source§fn cmp(&self, other: &StyleMixBlendMode) -> Ordering
fn cmp(&self, other: &StyleMixBlendMode) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StyleMixBlendMode
impl PartialEq for StyleMixBlendMode
Source§impl PartialOrd for StyleMixBlendMode
impl PartialOrd for StyleMixBlendMode
Source§impl PrintAsCssValue for StyleMixBlendMode
impl PrintAsCssValue for StyleMixBlendMode
fn print_as_css_value(&self) -> String
impl Copy for StyleMixBlendMode
impl Eq for StyleMixBlendMode
impl StructuralPartialEq for StyleMixBlendMode
Auto Trait Implementations§
impl Freeze for StyleMixBlendMode
impl RefUnwindSafe for StyleMixBlendMode
impl Send for StyleMixBlendMode
impl Sync for StyleMixBlendMode
impl Unpin for StyleMixBlendMode
impl UnwindSafe for StyleMixBlendMode
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