[][src]Enum vulkayes_core::descriptor::set::update::DescriptorTypeBuffer

#[repr(i32)]pub enum DescriptorTypeBuffer {
    UNIFORM_BUFFER,
    STORAGE_BUFFER,
    UNIFORM_BUFFER_DYNAMIC,
    STORAGE_BUFFER_DYNAMIC,
}

Variants

UNIFORM_BUFFER
STORAGE_BUFFER
UNIFORM_BUFFER_DYNAMIC
STORAGE_BUFFER_DYNAMIC

Trait Implementations

impl Clone for DescriptorTypeBuffer[src]

impl Copy for DescriptorTypeBuffer[src]

impl Debug for DescriptorTypeBuffer[src]

impl Eq for DescriptorTypeBuffer[src]

impl Hash for DescriptorTypeBuffer[src]

impl Into<DescriptorType> for DescriptorTypeBuffer[src]

impl Ord for DescriptorTypeBuffer[src]

impl PartialEq<DescriptorTypeBuffer> for DescriptorTypeBuffer[src]

impl PartialOrd<DescriptorTypeBuffer> for DescriptorTypeBuffer[src]

impl StructuralEq for DescriptorTypeBuffer[src]

impl StructuralPartialEq for DescriptorTypeBuffer[src]

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