pub enum DescriptorType {
Sampler,
Image {
ty: ImageDescriptorType,
},
Buffer {
ty: BufferDescriptorType,
format: BufferDescriptorFormat,
},
InputAttachment,
}
Expand description
The type of a descriptor.
Variants§
Sampler
A descriptor associated with sampler.
Image
A descriptor associated with an image.
Fields
§
ty: ImageDescriptorType
The specific type of this image descriptor.
Buffer
A descriptor associated with a buffer.
Fields
§
ty: BufferDescriptorType
The type of this buffer descriptor.
§
format: BufferDescriptorFormat
The format of this buffer descriptor.
InputAttachment
A descriptor associated with an input attachment.
Trait Implementations§
Source§impl Clone for DescriptorType
impl Clone for DescriptorType
Source§fn clone(&self) -> DescriptorType
fn clone(&self) -> DescriptorType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DescriptorType
impl Debug for DescriptorType
Source§impl Hash for DescriptorType
impl Hash for DescriptorType
Source§impl Ord for DescriptorType
impl Ord for DescriptorType
Source§fn cmp(&self, other: &DescriptorType) -> Ordering
fn cmp(&self, other: &DescriptorType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DescriptorType
impl PartialEq for DescriptorType
Source§impl PartialOrd for DescriptorType
impl PartialOrd for DescriptorType
impl Copy for DescriptorType
impl Eq for DescriptorType
impl StructuralPartialEq for DescriptorType
Auto Trait Implementations§
impl Freeze for DescriptorType
impl RefUnwindSafe for DescriptorType
impl Send for DescriptorType
impl Sync for DescriptorType
impl Unpin for DescriptorType
impl UnwindSafe for DescriptorType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more