Struct vulkanalia_sys::ImageCreateInfo[][src]

#[repr(C)]pub struct ImageCreateInfo {
    pub s_type: StructureType,
    pub next: *const c_void,
    pub flags: ImageCreateFlags,
    pub image_type: ImageType,
    pub format: Format,
    pub extent: Extent3D,
    pub mip_levels: u32,
    pub array_layers: u32,
    pub samples: SampleCountFlags,
    pub tiling: ImageTiling,
    pub usage: ImageUsageFlags,
    pub sharing_mode: SharingMode,
    pub queue_family_index_count: u32,
    pub queue_family_indices: *const u32,
    pub initial_layout: ImageLayout,
}

Fields

s_type: StructureTypenext: *const c_voidflags: ImageCreateFlagsimage_type: ImageTypeformat: Formatextent: Extent3Dmip_levels: u32array_layers: u32samples: SampleCountFlagstiling: ImageTilingusage: ImageUsageFlagssharing_mode: SharingModequeue_family_index_count: u32queue_family_indices: *const u32initial_layout: ImageLayout

Trait Implementations

impl Clone for ImageCreateInfo[src]

impl Copy for ImageCreateInfo[src]

impl Debug for ImageCreateInfo[src]

impl Default for ImageCreateInfo[src]

impl Eq for ImageCreateInfo[src]

impl Hash for ImageCreateInfo[src]

impl PartialEq<ImageCreateInfo> for ImageCreateInfo[src]

impl StructuralEq for ImageCreateInfo[src]

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