Struct vulkanalia::vk::AttachmentDescription2Builder[][src]

#[repr(transparent)]pub struct AttachmentDescription2Builder<'b> { /* fields omitted */ }

A builder for a AttachmentDescription2.

Implementations

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

pub fn push_next<T>(self, next: &'b mut impl Cast<Target = T>) -> Self where
    T: ExtendsAttachmentDescription2
[src]

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

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

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

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

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

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

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

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

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

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

Trait Implementations

impl<'b> Cast for AttachmentDescription2Builder<'b>[src]

type Target = AttachmentDescription2

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

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

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

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

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

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

type Target = AttachmentDescription2

The resulting type after dereferencing.

impl<'b> DerefMut for AttachmentDescription2Builder<'b>[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.