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::DescriptorSet

The descriptor set to modify.

binding: DescriptorBinding

Binding 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: DescriptorArrayIndex

Offset into the array to copy to.

descriptors: I

Descriptors 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]

Auto Trait Implementations

impl<'a, B, I> RefUnwindSafe for DescriptorSetWrite<'a, B, I> where
    I: RefUnwindSafe,
    <B as Backend>::DescriptorSet: RefUnwindSafe
[src]

impl<'a, B, I> Send for DescriptorSetWrite<'a, B, I> where
    I: Send
[src]

impl<'a, B, I> Sync for DescriptorSetWrite<'a, B, I> where
    I: Sync
[src]

impl<'a, B, I> Unpin for DescriptorSetWrite<'a, B, I> where
    I: Unpin
[src]

impl<'a, B, I> !UnwindSafe for DescriptorSetWrite<'a, B, I>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.