Struct vulkano::image::ImageDescriptorLayouts[][src]

pub struct ImageDescriptorLayouts {
    pub storage_image: ImageLayout,
    pub combined_image_sampler: ImageLayout,
    pub sampled_image: ImageLayout,
    pub input_attachment: ImageLayout,
}

The set of layouts to use for an image when used in descriptor of various kinds.

Fields

storage_image: ImageLayout

The image layout to use in a descriptor as a storage image.

combined_image_sampler: ImageLayout

The image layout to use in a descriptor as a combined image sampler.

sampled_image: ImageLayout

The image layout to use in a descriptor as a sampled image.

input_attachment: ImageLayout

The image layout to use in a descriptor as an input attachment.

Trait Implementations

impl Clone for ImageDescriptorLayouts[src]

impl Copy for ImageDescriptorLayouts[src]

impl Debug for ImageDescriptorLayouts[src]

impl Eq for ImageDescriptorLayouts[src]

impl PartialEq<ImageDescriptorLayouts> for ImageDescriptorLayouts[src]

impl StructuralEq for ImageDescriptorLayouts[src]

impl StructuralPartialEq for ImageDescriptorLayouts[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> Content for T[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.