pub enum BlendMode {
Clear,
Source,
Destination,
SourceOver,
DestinationOver,
}
Expand description
Ways to blend two colors.
Variants§
Clear
Replaces the destination with zero.
Source
Replaces the destination with the source.
Destination
Preserves the destination.
SourceOver
Source over destination.
DestinationOver
Destination over source.
Trait Implementations§
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