Enum screen_13::graph::pass_ref::Descriptor
source · 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 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 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<Descriptor> for Descriptor
impl PartialEq<Descriptor> for Descriptor
source§fn eq(&self, other: &Descriptor) -> bool
fn eq(&self, other: &Descriptor) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<Descriptor> for Descriptor
impl PartialOrd<Descriptor> for Descriptor
source§fn partial_cmp(&self, other: &Descriptor) -> Option<Ordering>
fn partial_cmp(&self, other: &Descriptor) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more