[][src]Struct dxplr::d2d1::BlendDescription

pub struct BlendDescription {
    pub source_blend: Blend,
    pub destination_blend: Blend,
    pub blend_operation: BlendOperation,
    pub source_blend_alpha: Blend,
    pub destination_blend_alpha: Blend,
    pub blend_operation_alpha: BlendOperation,
    pub blend_factor: [f32; 4],
}

Fields

source_blend: Blenddestination_blend: Blendblend_operation: BlendOperationsource_blend_alpha: Blenddestination_blend_alpha: Blendblend_operation_alpha: BlendOperationblend_factor: [f32; 4]

Trait Implementations

impl Clone for BlendDescription[src]

impl Debug for BlendDescription[src]

impl From<D2D1_BLEND_DESCRIPTION> for BlendDescription[src]

Auto Trait Implementations

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.