Struct sierra::CopyDescriptorSet[][src]

pub struct CopyDescriptorSet<'a> {
    pub src: &'a DescriptorSet,
    pub src_binding: u32,
    pub src_element: u32,
    pub dst: &'a DescriptorSet,
    pub dst_binding: u32,
    pub dst_element: u32,
    pub count: u32,
}

Defines operation to copy descriptors range from one set to another.

Fields

src: &'a DescriptorSet

Source set from where descriptors are copied.

src_binding: u32

First binding to copy descriptors from.

src_element: u32

First array element of first binding to copy descriptors from.

dst: &'a DescriptorSet

Destination set into which descriptors are copied.

dst_binding: u32

First binding to copy descriptors to.

dst_element: u32

First array element of first binding to copy descriptors to.

count: u32

Number of descriptors to copy.

Trait Implementations

impl<'a> Clone for CopyDescriptorSet<'a>[src]

impl<'a> Copy for CopyDescriptorSet<'a>[src]

impl<'a> Debug for CopyDescriptorSet<'a>[src]

impl<'a> Eq for CopyDescriptorSet<'a>[src]

impl<'a> Hash for CopyDescriptorSet<'a>[src]

impl<'a> PartialEq<CopyDescriptorSet<'a>> for CopyDescriptorSet<'a>[src]

impl<'a> StructuralEq for CopyDescriptorSet<'a>[src]

impl<'a> StructuralPartialEq for CopyDescriptorSet<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for CopyDescriptorSet<'a>

impl<'a> Send for CopyDescriptorSet<'a>

impl<'a> Sync for CopyDescriptorSet<'a>

impl<'a> Unpin for CopyDescriptorSet<'a>

impl<'a> !UnwindSafe for CopyDescriptorSet<'a>

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> Instrument 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.