[][src]Enum bedrock::resources::ImageCell

pub enum ImageCell {
    DeviceChild {
        obj: VkImage,
        dev: Device,
        dim: VkImageType,
        fmt: VkFormat,
        size: Extent3D,
    },
    SwapchainChild {
        obj: VkImage,
        owner: Swapchain,
        fmt: VkFormat,
    },
}

Variants

DeviceChild

Fields of DeviceChild

obj: VkImagedev: Devicedim: VkImageTypefmt: VkFormatsize: Extent3D
SwapchainChild

Fields of SwapchainChild

obj: VkImageowner: Swapchainfmt: VkFormat

Trait Implementations

impl Drop for ImageCell[src]

Auto Trait Implementations

impl !RefUnwindSafe for ImageCell

impl !Send for ImageCell

impl !Sync for ImageCell

impl Unpin for ImageCell

impl !UnwindSafe for ImageCell

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, 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.