[][src]Enum vulkayes_core::resource::image::layout::ImageLayoutAttachment

#[repr(i32)]pub enum ImageLayoutAttachment {
    GENERAL,
    COLOR_ATTACHMENT_OPTIMAL,
    DEPTH_STENCIL_ATTACHMENT_OPTIMAL,
    DEPTH_STENCIL_READ_ONLY_OPTIMAL,
    SHADER_READ_ONLY_OPTIMAL,
    TRANSFER_SRC_OPTIMAL,
    TRANSFER_DST_OPTIMAL,
    DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL,
    DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL,
    SHARED_PRESENT_KHR,
    SHADING_RATE_OPTIMAL_NV,
    FRAGMENT_DENSITY_MAP_OPTIMAL_EXT,
}

Enum for image layout that can be used in render pass attachment position.

Variants

GENERAL
COLOR_ATTACHMENT_OPTIMAL
DEPTH_STENCIL_ATTACHMENT_OPTIMAL
DEPTH_STENCIL_READ_ONLY_OPTIMAL
SHADER_READ_ONLY_OPTIMAL
TRANSFER_SRC_OPTIMAL
TRANSFER_DST_OPTIMAL
DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL
DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL
SHARED_PRESENT_KHR
SHADING_RATE_OPTIMAL_NV
FRAGMENT_DENSITY_MAP_OPTIMAL_EXT

Trait Implementations

impl Clone for ImageLayoutAttachment[src]

impl Copy for ImageLayoutAttachment[src]

impl Debug for ImageLayoutAttachment[src]

impl Eq for ImageLayoutAttachment[src]

impl Hash for ImageLayoutAttachment[src]

impl Into<ImageLayout> for ImageLayoutAttachment[src]

impl Ord for ImageLayoutAttachment[src]

impl PartialEq<ImageLayoutAttachment> for ImageLayoutAttachment[src]

impl PartialOrd<ImageLayoutAttachment> for ImageLayoutAttachment[src]

impl StructuralEq for ImageLayoutAttachment[src]

impl StructuralPartialEq for ImageLayoutAttachment[src]

impl TryFrom<ImageLayout> for ImageLayoutAttachment[src]

type Error = String

The type returned in the event of a conversion error.

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.