[][src]Struct gfx_hal::pso::DescriptorSetCopy

pub struct DescriptorSetCopy<'a, B: Backend> {
    pub src_set: &'a B::DescriptorSet,
    pub src_binding: DescriptorBinding,
    pub src_array_offset: DescriptorArrayIndex,
    pub dst_set: &'a B::DescriptorSet,
    pub dst_binding: DescriptorBinding,
    pub dst_array_offset: DescriptorArrayIndex,
    pub count: usize,
}

Copies a range of descriptors to be bound from one descriptor set to another Should be provided to the copy_descriptor_sets method of a Device.

Fields

src_set: &'a B::DescriptorSetsrc_binding: DescriptorBindingsrc_array_offset: DescriptorArrayIndexdst_set: &'a B::DescriptorSetdst_binding: DescriptorBindingdst_array_offset: DescriptorArrayIndexcount: usize

Trait Implementations

impl<'a, B: Clone + Backend> Clone for DescriptorSetCopy<'a, B> where
    B::DescriptorSet: Clone,
    B::DescriptorSet: Clone
[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a, B: Copy + Backend> Copy for DescriptorSetCopy<'a, B> where
    B::DescriptorSet: Copy,
    B::DescriptorSet: Copy
[src]

impl<'a, B: Debug + Backend> Debug for DescriptorSetCopy<'a, B> where
    B::DescriptorSet: Debug,
    B::DescriptorSet: Debug
[src]

Auto Trait Implementations

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

impl<'a, B> Unpin for DescriptorSetCopy<'a, B>

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

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

impl<'a, B> RefUnwindSafe for DescriptorSetCopy<'a, B> where
    <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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]