Struct vulkanalia::vk::PipelineDepthStencilStateCreateInfoBuilder[][src]

#[repr(transparent)]pub struct PipelineDepthStencilStateCreateInfoBuilder { /* fields omitted */ }

Implementations

impl PipelineDepthStencilStateCreateInfoBuilder[src]

pub fn flags(self, flags: PipelineDepthStencilStateCreateFlags) -> Self[src]

pub fn depth_test_enable(self, depth_test_enable: bool) -> Self[src]

pub fn depth_write_enable(self, depth_write_enable: bool) -> Self[src]

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

pub fn depth_bounds_test_enable(self, depth_bounds_test_enable: bool) -> Self[src]

pub fn stencil_test_enable(self, stencil_test_enable: bool) -> Self[src]

pub fn front(self, front: impl Cast<Target = StencilOpState>) -> Self[src]

pub fn back(self, back: impl Cast<Target = StencilOpState>) -> Self[src]

pub fn min_depth_bounds(self, min_depth_bounds: f32) -> Self[src]

pub fn max_depth_bounds(self, max_depth_bounds: f32) -> Self[src]

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

Trait Implementations

impl Cast for PipelineDepthStencilStateCreateInfoBuilder[src]

type Target = PipelineDepthStencilStateCreateInfo

The other type this type type can be used interchangeably with in FFI.

impl Clone for PipelineDepthStencilStateCreateInfoBuilder[src]

impl Copy for PipelineDepthStencilStateCreateInfoBuilder[src]

impl Debug for PipelineDepthStencilStateCreateInfoBuilder[src]

impl Default for PipelineDepthStencilStateCreateInfoBuilder[src]

impl Deref for PipelineDepthStencilStateCreateInfoBuilder[src]

type Target = PipelineDepthStencilStateCreateInfo

The resulting type after dereferencing.

impl DerefMut for PipelineDepthStencilStateCreateInfoBuilder[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.