pub unsafe trait DescriptorSetDesc {
    fn num_bindings(&self) -> usize;
    fn descriptor(&self, binding: usize) -> Option<DescriptorDesc>;
}
Expand description

Trait for objects that describe the layout of the descriptors of a set.

Required Methods

Returns the number of binding slots in the set.

Returns a description of a descriptor, or None if out of range.

Implementors