[][src]Struct gfx_hal::pso::DescriptorSetWrite

pub struct DescriptorSetWrite<'a, B: Backend, WI> where
    WI: IntoIterator,
    WI::Item: Borrow<Descriptor<'a, B>>, 
{ pub set: &'a B::DescriptorSet, pub binding: DescriptorBinding, pub array_offset: DescriptorArrayIndex, pub descriptors: WI, }

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 B::DescriptorSetbinding: DescriptorBinding

Note: when there is more descriptors provided than array elements left in the specified binding starting at specified, offset, the updates are spilled onto the next binding (starting with offset 0), and so on.

array_offset: DescriptorArrayIndexdescriptors: WI

Trait Implementations

impl<'a, B: Debug + Backend, WI: Debug> Debug for DescriptorSetWrite<'a, B, WI> where
    WI: IntoIterator,
    WI::Item: Borrow<Descriptor<'a, B>>,
    B::DescriptorSet: Debug
[src]

Auto Trait Implementations

impl<'a, B, WI> Send for DescriptorSetWrite<'a, B, WI> where
    WI: Send,
    <B as Backend>::DescriptorSet: Sync

impl<'a, B, WI> Unpin for DescriptorSetWrite<'a, B, WI> where
    WI: Unpin

impl<'a, B, WI> Sync for DescriptorSetWrite<'a, B, WI> where
    WI: Sync,
    <B as Backend>::DescriptorSet: Sync

impl<'a, B, WI> UnwindSafe for DescriptorSetWrite<'a, B, WI> where
    WI: UnwindSafe,
    <B as Backend>::DescriptorSet: RefUnwindSafe

impl<'a, B, WI> RefUnwindSafe for DescriptorSetWrite<'a, B, WI> where
    WI: RefUnwindSafe,
    <B as Backend>::DescriptorSet: RefUnwindSafe

Blanket Implementations

impl<T> Supports<T> for T[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.

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

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

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