[][src]Struct gfx::state::Blend

pub struct Blend {
    pub color: BlendChannel,
    pub alpha: BlendChannel,
}

Fields

color: BlendChannelalpha: BlendChannel

Implementations

impl Blend[src]

pub fn new(eq: Equation, src: Factor, dst: Factor) -> Blend[src]

Create a new blend state with a given equation.

Trait Implementations

impl Clone for Blend[src]

impl Copy for Blend[src]

impl Debug for Blend[src]

impl Default for Blend[src]

impl Eq for Blend[src]

impl Hash for Blend[src]

impl PartialEq<Blend> for Blend[src]

impl PartialOrd<Blend> for Blend[src]

impl StructuralEq for Blend[src]

impl StructuralPartialEq for Blend[src]

Auto Trait Implementations

impl RefUnwindSafe for Blend

impl Send for Blend

impl Sync for Blend

impl Unpin for Blend

impl UnwindSafe for Blend

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.