[][src]Struct gfx::pso::target::BlendTarget

pub struct BlendTarget<T>(_, _);

Render target component with active blending mode.

  • init: (&str, ColorMask, Blend = blending state)
  • data: RenderTargetView<T>

Trait Implementations

impl<'a, T: BlendFormat> DataLink<'a> for BlendTarget<T>[src]

type Init = (&'a str, ColorMask, Blend)

The assotiated "init" type - a member of the PSO "init" struct.

Attempt to link with a vertex buffer containing multiple attributes.

Attempt to link with a vertex attribute.

Attempt to link with a constant buffer.

Attempt to link with a global constant.

Attempt to link with a depth-stencil target (DSV).

Attempt to link with a shader resource (SRV).

Attempt to link with an unordered access (UAV).

Attempt to link with a sampler.

Attempt to enable scissor test.

impl<R: Resources, T> DataBind<R> for BlendTarget<T>[src]

type Data = RenderTargetView<R, T>

The associated "data" type - a member of the PSO "data" struct.

impl<T> Eq for BlendTarget<T>[src]

impl<T> Clone for BlendTarget<T>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T> PartialEq<BlendTarget<T>> for BlendTarget<T>[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl<T> Hash for BlendTarget<T>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<T> Debug for BlendTarget<T>[src]

Auto Trait Implementations

impl<T> Send for BlendTarget<T> where
    T: Send

impl<T> Sync for BlendTarget<T> where
    T: Sync

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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