Struct vulkanalia::vk::ImageViewCreateInfo[][src]

#[repr(C)]pub struct ImageViewCreateInfo {
    pub s_type: StructureType,
    pub next: *const c_void,
    pub flags: ImageViewCreateFlags,
    pub image: Image,
    pub view_type: ImageViewType,
    pub format: Format,
    pub components: ComponentMapping,
    pub subresource_range: ImageSubresourceRange,
}

Fields

s_type: StructureTypenext: *const c_voidflags: ImageViewCreateFlagsimage: Imageview_type: ImageViewTypeformat: Formatcomponents: ComponentMappingsubresource_range: ImageSubresourceRange

Trait Implementations

impl Cast for ImageViewCreateInfo[src]

type Target = ImageViewCreateInfo

The other type this type type can be used interchangeably with in FFI.

impl Clone for ImageViewCreateInfo[src]

impl Copy for ImageViewCreateInfo[src]

impl Debug for ImageViewCreateInfo[src]

impl Default for ImageViewCreateInfo[src]

impl Eq for ImageViewCreateInfo[src]

impl<'b> HasBuilder<'b> for ImageViewCreateInfo[src]

type Builder = ImageViewCreateInfoBuilder<'b>

The associated builder for this type.

impl Hash for ImageViewCreateInfo[src]

impl PartialEq<ImageViewCreateInfo> for ImageViewCreateInfo[src]

impl StructuralEq for ImageViewCreateInfo[src]

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