Struct erupt::vk1_2::AttachmentDescription2Builder[][src]

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

Implementations

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

pub fn new() -> AttachmentDescription2Builder<'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) -> AttachmentDescription2[src]

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

Methods from Deref<Target = AttachmentDescription2>

Trait Implementations

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

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

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

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

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

type Target = AttachmentDescription2

The resulting type after dereferencing.

impl<'a> DerefMut for AttachmentDescription2Builder<'a>[src]

impl<'a> ExtendableFrom<'a, AttachmentDescriptionStencilLayout> for AttachmentDescription2Builder<'a>[src]

impl<'a> ExtendableFrom<'a, AttachmentDescriptionStencilLayoutBuilder<'_>> for AttachmentDescription2Builder<'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.