Enum dacite::core::ImageLayout [] [src]

pub enum ImageLayout {
    Undefined,
    General,
    ColorAttachmentOptimal,
    DepthStencilAttachmentOptimal,
    DepthStencilReadOnlyOptimal,
    ShaderReadOnlyOptimal,
    TransferSrcOptimal,
    TransferDstOptimal,
    Preinitialized,
    PresentSrcKhr,
    Unknown(VkImageLayout),
}

Variants

See extension VK_KHR_swapchain

Trait Implementations

impl Debug for ImageLayout
[src]

Formats the value using the given formatter.

impl Copy for ImageLayout
[src]

impl Clone for ImageLayout
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ImageLayout
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ImageLayout
[src]

impl Hash for ImageLayout
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl From<VkImageLayout> for ImageLayout
[src]

Performs the conversion.