pub struct BlendOp(/* private fields */);Expand description
Implementations§
Source§impl BlendOp
impl BlendOp
pub const ADD: BlendOp
pub const SUBTRACT: BlendOp
pub const REVERSE_SUBTRACT: BlendOp
pub const MIN: BlendOp
pub const MAX: BlendOp
pub const ZERO: BlendOp
pub const SRC: BlendOp
pub const DST: BlendOp
pub const SRC_OVER: BlendOp
pub const DST_OVER: BlendOp
pub const SRC_IN: BlendOp
pub const DST_IN: BlendOp
pub const SRC_OUT: BlendOp
pub const DST_OUT: BlendOp
pub const SRC_ATOP: BlendOp
pub const DST_ATOP: BlendOp
pub const XOR: BlendOp
pub const MULTIPLY: BlendOp
pub const SCREEN: BlendOp
pub const OVERLAY: BlendOp
pub const DARKEN: BlendOp
pub const LIGHTEN: BlendOp
pub const COLORDODGE: BlendOp
pub const COLORBURN: BlendOp
pub const HARDLIGHT: BlendOp
pub const SOFTLIGHT: BlendOp
pub const DIFFERENCE: BlendOp
pub const EXCLUSION: BlendOp
pub const INVERT: BlendOp
pub const INVERT_RGB: BlendOp
pub const LINEARDODGE: BlendOp
pub const LINEARBURN: BlendOp
pub const VIVIDLIGHT: BlendOp
pub const LINEARLIGHT: BlendOp
pub const PINLIGHT: BlendOp
pub const HARDMIX: BlendOp
pub const HSL_HUE: BlendOp
pub const HSL_SATURATION: BlendOp
pub const HSL_COLOR: BlendOp
pub const HSL_LUMINOSITY: BlendOp
pub const PLUS: BlendOp
pub const PLUS_CLAMPED: BlendOp
pub const PLUS_CLAMPED_ALPHA: BlendOp
pub const PLUS_DARKER: BlendOp
pub const MINUS: BlendOp
pub const MINUS_CLAMPED: BlendOp
pub const CONTRAST: BlendOp
pub const INVERT_OVG: BlendOp
pub const RED: BlendOp
pub const GREEN: BlendOp
pub const BLUE: BlendOp
pub const fn from_raw(value: i32) -> BlendOp
pub const fn as_raw(self) -> i32
Trait Implementations§
Source§impl Error for BlendOp
impl Error for BlendOp
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl Ord for BlendOp
impl Ord for BlendOp
Source§impl PartialOrd for BlendOp
impl PartialOrd for BlendOp
impl Copy for BlendOp
impl Eq for BlendOp
impl StructuralPartialEq for BlendOp
Auto Trait Implementations§
impl Freeze for BlendOp
impl RefUnwindSafe for BlendOp
impl Send for BlendOp
impl Sync for BlendOp
impl Unpin for BlendOp
impl UnsafeUnpin for BlendOp
impl UnwindSafe for BlendOp
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