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

pub struct StencilTarget<T>(_);

Stencil target component.

  • init: Stencil = stencil state
  • data: (DepthStencilView<T>, (front, back) = stencil reference values)

Trait Implementations

impl<'a, T: StencilFormat> DataLink<'a> for StencilTarget<T>[src]

type Init = Stencil

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 an output render target (RTV).

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 StencilTarget<T>[src]

type Data = (DepthStencilView<R, T>, (Stencil, Stencil))

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

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

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

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

Performs copy-assignment from source. Read more

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

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

This method tests for !=.

impl<T> Hash for StencilTarget<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 StencilTarget<T>[src]

Auto Trait Implementations

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

impl<T> Sync for StencilTarget<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]