[][src]Struct ash::vk::AttachmentDescription2KHR

#[repr(C)]
pub struct AttachmentDescription2KHR {
    pub s_type: StructureType,
    pub p_next: *const c_void,
    pub flags: AttachmentDescriptionFlags,
    pub format: Format,
    pub samples: SampleCountFlags,
    pub load_op: AttachmentLoadOp,
    pub store_op: AttachmentStoreOp,
    pub stencil_load_op: AttachmentLoadOp,
    pub stencil_store_op: AttachmentStoreOp,
    pub initial_layout: ImageLayout,
    pub final_layout: ImageLayout,
}

https://www.khronos.org/registry/vulkan/specs/1.1-extensions/man/html/VkAttachmentDescription2KHR.html

Fields

s_type: StructureTypep_next: *const c_voidflags: AttachmentDescriptionFlagsformat: Formatsamples: SampleCountFlagsload_op: AttachmentLoadOpstore_op: AttachmentStoreOpstencil_load_op: AttachmentLoadOpstencil_store_op: AttachmentStoreOpinitial_layout: ImageLayoutfinal_layout: ImageLayout

Methods

impl AttachmentDescription2KHR[src]

pub fn builder<'a>() -> AttachmentDescription2KHRBuilder<'a>[src]

Trait Implementations

impl Copy for AttachmentDescription2KHR[src]

impl Default for AttachmentDescription2KHR[src]

impl Clone for AttachmentDescription2KHR[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for AttachmentDescription2KHR[src]

Auto Trait Implementations

impl Unpin for AttachmentDescription2KHR

impl !Sync for AttachmentDescription2KHR

impl !Send for AttachmentDescription2KHR

impl UnwindSafe for AttachmentDescription2KHR

impl RefUnwindSafe for AttachmentDescription2KHR

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]