Struct gfx_hal::pso::DescriptorSetWrite [−][src]
pub struct DescriptorSetWrite<'a, B: Backend, I> where
I: Iterator<Item = Descriptor<'a, B>>, { pub set: &'a mut B::DescriptorSet, pub binding: DescriptorBinding, pub array_offset: DescriptorArrayIndex, pub descriptors: I, }
Writes the actual descriptors to be bound into a descriptor set.
Should be provided to the write_descriptor_sets method of a Device.
Fields
set: &'a mut B::DescriptorSetThe descriptor set to modify.
binding: DescriptorBindingBinding index to start writing at.
Note: when there are more descriptors provided than array elements left in the specified binding starting at the specified offset, the updates are spilled onto the next binding (starting with offset 0), and so on.
array_offset: DescriptorArrayIndexOffset into the array to copy to.
descriptors: IDescriptors to write to the set.
Trait Implementations
impl<'a, B: Debug + Backend, I: Debug> Debug for DescriptorSetWrite<'a, B, I> where
I: Iterator<Item = Descriptor<'a, B>>,
B::DescriptorSet: Debug, [src]
impl<'a, B: Debug + Backend, I: Debug> Debug for DescriptorSetWrite<'a, B, I> where
I: Iterator<Item = Descriptor<'a, B>>,
B::DescriptorSet: Debug, [src]Auto Trait Implementations
impl<'a, B, I> RefUnwindSafe for DescriptorSetWrite<'a, B, I> where
I: RefUnwindSafe,
<B as Backend>::DescriptorSet: RefUnwindSafe,
impl<'a, B, I> RefUnwindSafe for DescriptorSetWrite<'a, B, I> where
I: RefUnwindSafe,
<B as Backend>::DescriptorSet: RefUnwindSafe, impl<'a, B, I> Send for DescriptorSetWrite<'a, B, I> where
I: Send,
impl<'a, B, I> Send for DescriptorSetWrite<'a, B, I> where
I: Send, impl<'a, B, I> Sync for DescriptorSetWrite<'a, B, I> where
I: Sync,
impl<'a, B, I> Sync for DescriptorSetWrite<'a, B, I> where
I: Sync, impl<'a, B, I> Unpin for DescriptorSetWrite<'a, B, I> where
I: Unpin,
impl<'a, B, I> Unpin for DescriptorSetWrite<'a, B, I> where
I: Unpin, impl<'a, B, I> !UnwindSafe for DescriptorSetWrite<'a, B, I>
impl<'a, B, I> !UnwindSafe for DescriptorSetWrite<'a, B, I>