pub struct Blending {
pub equation: Equation,
pub src: Factor,
pub dst: Factor,
}Expand description
Basic blending configuration.
Fields§
§equation: EquationBlending equation to use.
src: FactorSource factor.
dst: FactorDestination factor.
Trait Implementations§
Source§impl From<Blending> for BlendingMode
impl From<Blending> for BlendingMode
impl Copy for Blending
impl Eq for Blending
impl StructuralPartialEq for Blending
Auto Trait Implementations§
impl Freeze for Blending
impl RefUnwindSafe for Blending
impl Send for Blending
impl Sync for Blending
impl Unpin for Blending
impl UnsafeUnpin for Blending
impl UnwindSafe for Blending
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