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
sourceimpl Clone for Descriptor
impl Clone for Descriptor
sourcefn clone(&self) -> Descriptor
fn clone(&self) -> Descriptor
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for Descriptor
impl Debug for Descriptor
sourceimpl From<(u32, [u32; 1])> for Descriptor
impl From<(u32, [u32; 1])> for Descriptor
sourcefn from(tuple: (BindingIndex, [BindingOffset; 1])) -> Self
fn from(tuple: (BindingIndex, [BindingOffset; 1])) -> Self
Converts to this type from the input type.
sourceimpl From<(u32, u32, [u32; 1])> for Descriptor
impl From<(u32, u32, [u32; 1])> for Descriptor
sourcefn from(tuple: (DescriptorSetIndex, BindingIndex, [BindingOffset; 1])) -> Self
fn from(tuple: (DescriptorSetIndex, BindingIndex, [BindingOffset; 1])) -> Self
Converts to this type from the input type.
sourceimpl From<(u32, u32)> for Descriptor
impl From<(u32, u32)> for Descriptor
sourcefn from(tuple: (DescriptorSetIndex, BindingIndex)) -> Self
fn from(tuple: (DescriptorSetIndex, BindingIndex)) -> Self
Converts to this type from the input type.
sourceimpl From<u32> for Descriptor
impl From<u32> for Descriptor
sourcefn from(val: BindingIndex) -> Self
fn from(val: BindingIndex) -> Self
Converts to this type from the input type.
sourceimpl Hash for Descriptor
impl Hash for Descriptor
sourceimpl Ord for Descriptor
impl Ord for Descriptor
sourcefn cmp(&self, other: &Descriptor) -> Ordering
fn cmp(&self, other: &Descriptor) -> Ordering
1.21.0 · sourcefn 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
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<Descriptor> for Descriptor
impl PartialEq<Descriptor> for Descriptor
sourcefn eq(&self, other: &Descriptor) -> bool
fn eq(&self, other: &Descriptor) -> bool
sourceimpl PartialOrd<Descriptor> for Descriptor
impl PartialOrd<Descriptor> for Descriptor
sourcefn partial_cmp(&self, other: &Descriptor) -> Option<Ordering>
fn partial_cmp(&self, other: &Descriptor) -> Option<Ordering>
1.0.0 · sourcefn 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 moreimpl Copy for Descriptor
impl Eq for Descriptor
impl StructuralEq for Descriptor
impl StructuralPartialEq for Descriptor
Auto Trait Implementations
impl RefUnwindSafe for Descriptor
impl Send for Descriptor
impl Sync for Descriptor
impl Unpin for Descriptor
impl UnwindSafe for Descriptor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more