pub enum BlendingMethod {
Normal = 0,
Add = 1,
Subtract = 2,
Multiply = 3,
Same = 15,
Unknown = 16,
}Variants§
Implementations§
Trait Implementations§
Source§impl PartialEq for BlendingMethod
impl PartialEq for BlendingMethod
impl StructuralPartialEq for BlendingMethod
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