Struct vulkanalia::vk::AttachmentDescriptionBuilder[][src]

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

A builder for a AttachmentDescription.

Implementations

impl AttachmentDescriptionBuilder[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) -> AttachmentDescription[src]

Trait Implementations

impl Cast for AttachmentDescriptionBuilder[src]

type Target = AttachmentDescription

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

impl Clone for AttachmentDescriptionBuilder[src]

impl Copy for AttachmentDescriptionBuilder[src]

impl Debug for AttachmentDescriptionBuilder[src]

impl Default for AttachmentDescriptionBuilder[src]

impl Deref for AttachmentDescriptionBuilder[src]

type Target = AttachmentDescription

The resulting type after dereferencing.

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