pub enum Descriptor {
ArrayBinding(DescriptorSetIndex, BindingIndex, BindingOffset),
Binding(DescriptorSetIndex, BindingIndex),
}Expand description
Describes the SPIR-V binding index, and optionally a specific descriptor set and array index.
Generally you might pass a function a descriptor using a simple integer:
let descriptor = 42;
my_func(descriptor, image);But also:
(0, 42)for descriptor set0and binding index42(42, [8])for the same binding, but the 8th element(0, 42, [8])same as the previous example
Variants§
ArrayBinding(DescriptorSetIndex, BindingIndex, BindingOffset)
An array binding which includes an offset argument for the bound element.
Binding(DescriptorSetIndex, BindingIndex)
A single binding.
Trait Implementations§
Source§impl Clone for Descriptor
impl Clone for Descriptor
Source§fn clone(&self) -> Descriptor
fn clone(&self) -> Descriptor
Returns a duplicate 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 Descriptor
impl Debug for Descriptor
Source§impl From<(u32, [u32; 1])> for Descriptor
impl From<(u32, [u32; 1])> for Descriptor
Source§fn from(tuple: (BindingIndex, [BindingOffset; 1])) -> Self
fn from(tuple: (BindingIndex, [BindingOffset; 1])) -> Self
Converts to this type from the input type.
Source§impl From<(u32, u32)> for Descriptor
impl From<(u32, u32)> for Descriptor
Source§fn from(tuple: (DescriptorSetIndex, BindingIndex)) -> Self
fn from(tuple: (DescriptorSetIndex, BindingIndex)) -> Self
Converts to this type from the input type.
Source§impl From<(u32, u32, [u32; 1])> for Descriptor
impl From<(u32, u32, [u32; 1])> for Descriptor
Source§fn from(tuple: (DescriptorSetIndex, BindingIndex, [BindingOffset; 1])) -> Self
fn from(tuple: (DescriptorSetIndex, BindingIndex, [BindingOffset; 1])) -> Self
Converts to this type from the input type.
Source§impl From<u32> for Descriptor
impl From<u32> for Descriptor
Source§fn from(val: BindingIndex) -> Self
fn from(val: BindingIndex) -> Self
Converts to this type from the input type.
Source§impl Hash for Descriptor
impl Hash for Descriptor
Source§impl Ord for Descriptor
impl Ord for Descriptor
Source§fn cmp(&self, other: &Descriptor) -> Ordering
fn cmp(&self, other: &Descriptor) -> 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 Descriptor
impl PartialEq for Descriptor
Source§impl PartialOrd for Descriptor
impl PartialOrd for Descriptor
impl Copy for Descriptor
impl Eq for Descriptor
impl StructuralPartialEq for Descriptor
Auto Trait Implementations§
impl Freeze for Descriptor
impl RefUnwindSafe for Descriptor
impl Send for Descriptor
impl Sync for Descriptor
impl Unpin for Descriptor
impl UnwindSafe for Descriptor
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