pub enum BlendMode {
Translucent,
Additive,
Modulate,
Modulate2,
Over,
}Expand description
Variants§
Translucent
Transparent depending on alpha settings.
Additive
Additive.
Modulate
Multiply.
Modulate2
Multiply 2.
Over
Opaque.
Trait Implementations§
Source§impl Ord for BlendMode
impl Ord for BlendMode
Source§impl PartialOrd for BlendMode
impl PartialOrd for BlendMode
impl Copy for BlendMode
impl Eq for BlendMode
impl StructuralPartialEq for BlendMode
Auto Trait Implementations§
impl Freeze for BlendMode
impl RefUnwindSafe for BlendMode
impl Send for BlendMode
impl Sync for BlendMode
impl Unpin for BlendMode
impl UnwindSafe for BlendMode
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