Struct vulkanalia_sys::AttachmentDescription2[][src]

#[repr(C)]pub struct AttachmentDescription2 {
    pub s_type: StructureType,
    pub 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,
}

Fields

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

Trait Implementations

impl Clone for AttachmentDescription2[src]

impl Copy for AttachmentDescription2[src]

impl Debug for AttachmentDescription2[src]

impl Default for AttachmentDescription2[src]

impl Eq for AttachmentDescription2[src]

impl Hash for AttachmentDescription2[src]

impl PartialEq<AttachmentDescription2> for AttachmentDescription2[src]

impl StructuralEq for AttachmentDescription2[src]

impl StructuralPartialEq for AttachmentDescription2[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.