[][src]Struct rendy::descriptor::DescriptorSet

pub struct DescriptorSet<B> where
    B: Backend
{ /* fields omitted */ }
[]

Descriptor set from allocator.

Implementations

impl<B> DescriptorSet<B> where
    B: Backend
[src][]

pub fn raw(&self) -> &<B as Backend>::DescriptorSet[src][]

Get raw set

pub unsafe fn raw_mut(&mut self) -> &mut <B as Backend>::DescriptorSet[src][]

Get raw set It must not be replaced.

Trait Implementations

impl<B> Debug for DescriptorSet<B> where
    B: Debug + Backend,
    <B as Backend>::DescriptorSet: Debug
[src][+]

impl<B> Deref for DescriptorSet<B> where
    B: Backend
[src][+]

type Target = <B as Backend>::DescriptorSet

The resulting type after dereferencing.

Auto Trait Implementations

impl<B> RefUnwindSafe for DescriptorSet<B> where
    <B as Backend>::DescriptorSet: RefUnwindSafe

impl<B> Send for DescriptorSet<B> where
    <B as Backend>::DescriptorSet: Send

impl<B> Sync for DescriptorSet<B> where
    <B as Backend>::DescriptorSet: Sync

impl<B> Unpin for DescriptorSet<B> where
    <B as Backend>::DescriptorSet: Unpin

impl<B> UnwindSafe for DescriptorSet<B> where
    <B as Backend>::DescriptorSet: UnwindSafe

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> MemoryUsage for T where
    T: Deref + Debug,
    <T as Deref>::Target: MemoryUsage
[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.