pub enum BlendingMethod {
Normal = 0,
Add = 1,
Subtract = 2,
Multiply = 3,
Same = 15,
Unknown = 16,
}Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for BlendingMethod
impl RefUnwindSafe for BlendingMethod
impl Send for BlendingMethod
impl Sync for BlendingMethod
impl Unpin for BlendingMethod
impl UnwindSafe for BlendingMethod
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