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,
}Expand description
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§
Auto Trait Implementations§
impl<'a, B, I> Freeze for DescriptorSetWrite<'a, B, I>where
I: Freeze,
impl<'a, B, I> RefUnwindSafe for DescriptorSetWrite<'a, B, I>
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> Unpin for DescriptorSetWrite<'a, B, I>where
I: Unpin,
impl<'a, B, I> !UnwindSafe for DescriptorSetWrite<'a, B, I>
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