[][src]Enum vulkayes_core::descriptor::layout::params::DescriptorSetLayoutBindingGenericType

#[repr(i32)]pub enum DescriptorSetLayoutBindingGenericType {
    SAMPLED_IMAGE,
    STORAGE_IMAGE,
    UNIFORM_TEXEL_BUFFER,
    STORAGE_TEXEL_BUFFER,
    UNIFORM_BUFFER,
    STORAGE_BUFFER,
    UNIFORM_BUFFER_DYNAMIC,
    STORAGE_BUFFER_DYNAMIC,
}

Enum for supported descriptor set layout types and don't require special handling.

Variants

SAMPLED_IMAGE
STORAGE_IMAGE
UNIFORM_TEXEL_BUFFER
STORAGE_TEXEL_BUFFER
UNIFORM_BUFFER
STORAGE_BUFFER
UNIFORM_BUFFER_DYNAMIC
STORAGE_BUFFER_DYNAMIC

Trait Implementations

impl Clone for DescriptorSetLayoutBindingGenericType[src]

impl Copy for DescriptorSetLayoutBindingGenericType[src]

impl Debug for DescriptorSetLayoutBindingGenericType[src]

impl Eq for DescriptorSetLayoutBindingGenericType[src]

impl Hash for DescriptorSetLayoutBindingGenericType[src]

impl Into<DescriptorType> for DescriptorSetLayoutBindingGenericType[src]

impl Ord for DescriptorSetLayoutBindingGenericType[src]

impl PartialEq<DescriptorSetLayoutBindingGenericType> for DescriptorSetLayoutBindingGenericType[src]

impl PartialOrd<DescriptorSetLayoutBindingGenericType> for DescriptorSetLayoutBindingGenericType[src]

impl StructuralEq for DescriptorSetLayoutBindingGenericType[src]

impl StructuralPartialEq for DescriptorSetLayoutBindingGenericType[src]

impl TryFrom<DescriptorType> for DescriptorSetLayoutBindingGenericType[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.