Enum vulkano::descriptor::descriptor::DescriptorType[][src]

#[repr(u32)]
pub enum DescriptorType { Sampler, CombinedImageSampler, SampledImage, StorageImage, UniformTexelBuffer, StorageTexelBuffer, UniformBuffer, StorageBuffer, UniformBufferDynamic, StorageBufferDynamic, InputAttachment, }

Describes what kind of resource may later be bound to a descriptor.

This is mostly the same as a DescriptorDescTy but with less precise information.

Variants

Trait Implementations

impl Debug for DescriptorType
[src]

Formats the value using the given formatter. Read more

impl Copy for DescriptorType
[src]

impl Clone for DescriptorType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescriptorType
[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 DescriptorType
[src]

Auto Trait Implementations