gfx_hal::pso

Struct DescriptorSetWrite

Source
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::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§

Source§

impl<'a, B: Debug + Backend, I> Debug for DescriptorSetWrite<'a, B, I>
where I: Iterator<Item = Descriptor<'a, B>> + Debug, B::DescriptorSet: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.