Struct vulkanalia_sys::SubpassDescription2[][src]

#[repr(C)]pub struct SubpassDescription2 {
    pub s_type: StructureType,
    pub next: *const c_void,
    pub flags: SubpassDescriptionFlags,
    pub pipeline_bind_point: PipelineBindPoint,
    pub view_mask: u32,
    pub input_attachment_count: u32,
    pub input_attachments: *const AttachmentReference2,
    pub color_attachment_count: u32,
    pub color_attachments: *const AttachmentReference2,
    pub resolve_attachments: *const AttachmentReference2,
    pub depth_stencil_attachment: *const AttachmentReference2,
    pub preserve_attachment_count: u32,
    pub preserve_attachments: *const u32,
}

Fields

s_type: StructureTypenext: *const c_voidflags: SubpassDescriptionFlagspipeline_bind_point: PipelineBindPointview_mask: u32input_attachment_count: u32input_attachments: *const AttachmentReference2color_attachment_count: u32color_attachments: *const AttachmentReference2resolve_attachments: *const AttachmentReference2depth_stencil_attachment: *const AttachmentReference2preserve_attachment_count: u32preserve_attachments: *const u32

Trait Implementations

impl Clone for SubpassDescription2[src]

impl Copy for SubpassDescription2[src]

impl Debug for SubpassDescription2[src]

impl Default for SubpassDescription2[src]

impl Eq for SubpassDescription2[src]

impl Hash for SubpassDescription2[src]

impl PartialEq<SubpassDescription2> for SubpassDescription2[src]

impl StructuralEq for SubpassDescription2[src]

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