Struct erupt::vk1_0::StencilOpStateBuilder[][src]

#[repr(transparent)]pub struct StencilOpStateBuilder<'a>(_, _);

Implementations

impl<'a> StencilOpStateBuilder<'a>[src]

pub fn new() -> StencilOpStateBuilder<'a>[src]

pub fn fail_op(mut self: Self, fail_op: StencilOp) -> Self[src]

pub fn pass_op(mut self: Self, pass_op: StencilOp) -> Self[src]

pub fn depth_fail_op(mut self: Self, depth_fail_op: StencilOp) -> Self[src]

pub fn compare_op(mut self: Self, compare_op: CompareOp) -> Self[src]

pub fn compare_mask(mut self: Self, compare_mask: u32) -> Self[src]

pub fn write_mask(mut self: Self, write_mask: u32) -> Self[src]

pub fn reference(mut self: Self, reference: u32) -> Self[src]

pub fn build(self) -> StencilOpState[src]

Discards all lifetime information. Use the Deref and DerefMut implementations if possible.

Methods from Deref<Target = StencilOpState>

Trait Implementations

impl<'a> Clone for StencilOpStateBuilder<'a>[src]

impl<'a> Copy for StencilOpStateBuilder<'a>[src]

impl<'a> Debug for StencilOpStateBuilder<'a>[src]

impl<'a> Default for StencilOpStateBuilder<'a>[src]

impl<'a> Deref for StencilOpStateBuilder<'a>[src]

type Target = StencilOpState

The resulting type after dereferencing.

impl<'a> DerefMut for StencilOpStateBuilder<'a>[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.