[][src]Struct ash::vk::ImageCreateInfo

#[repr(C)]
pub struct ImageCreateInfo {
    pub s_type: StructureType,
    pub p_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 p_queue_family_indices: *const u32,
    pub initial_layout: ImageLayout,
}

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

Fields

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

Methods

impl ImageCreateInfo[src]

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

Trait Implementations

impl Copy for ImageCreateInfo[src]

impl Default for ImageCreateInfo[src]

impl Clone for ImageCreateInfo[src]

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

Performs copy-assignment from source. Read more

impl Debug for ImageCreateInfo[src]

Auto Trait Implementations

impl Unpin for ImageCreateInfo

impl !Sync for ImageCreateInfo

impl !Send for ImageCreateInfo

impl UnwindSafe for ImageCreateInfo

impl RefUnwindSafe for ImageCreateInfo

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]