Struct erupt::vk1_0::AttachmentDescriptionBuilder[][src]

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

Implementations

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

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

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

pub fn format(mut self: Self, format: Format) -> Self[src]

pub fn samples(mut self: Self, samples: SampleCountFlagBits) -> Self[src]

pub fn load_op(mut self: Self, load_op: AttachmentLoadOp) -> Self[src]

pub fn store_op(mut self: Self, store_op: AttachmentStoreOp) -> Self[src]

pub fn stencil_load_op(
    mut self: Self,
    stencil_load_op: AttachmentLoadOp
) -> Self
[src]

pub fn stencil_store_op(
    mut self: Self,
    stencil_store_op: AttachmentStoreOp
) -> Self
[src]

pub fn initial_layout(mut self: Self, initial_layout: ImageLayout) -> Self[src]

pub fn final_layout(mut self: Self, final_layout: ImageLayout) -> Self[src]

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

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

Methods from Deref<Target = AttachmentDescription>

Trait Implementations

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

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

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

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

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

type Target = AttachmentDescription

The resulting type after dereferencing.

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