pub struct DescriptorSet<B: Backend> { /* private fields */ }
Expand description
Descriptor set from allocator.
Implementations§
Source§impl<B> DescriptorSet<B>where
B: Backend,
impl<B> DescriptorSet<B>where
B: Backend,
Sourcepub fn raw(&self) -> &B::DescriptorSet
pub fn raw(&self) -> &B::DescriptorSet
Get raw set
Sourcepub unsafe fn raw_mut(&mut self) -> &mut B::DescriptorSet
pub unsafe fn raw_mut(&mut self) -> &mut B::DescriptorSet
Get raw set It must not be replaced.
Trait Implementations§
Source§impl<B: Debug + Backend> Debug for DescriptorSet<B>where
B::DescriptorSet: Debug,
impl<B: Debug + Backend> Debug for DescriptorSet<B>where
B::DescriptorSet: Debug,
Source§impl<B> Deref for DescriptorSet<B>where
B: Backend,
impl<B> Deref for DescriptorSet<B>where
B: Backend,
Source§type Target = <B as Backend>::DescriptorSet
type Target = <B as Backend>::DescriptorSet
The resulting type after dereferencing.
Source§fn deref(&self) -> &B::DescriptorSet
fn deref(&self) -> &B::DescriptorSet
Dereferences the value.
Auto Trait Implementations§
impl<B> Freeze for DescriptorSet<B>
impl<B> RefUnwindSafe for DescriptorSet<B>
impl<B> Send for DescriptorSet<B>
impl<B> Sync for DescriptorSet<B>
impl<B> Unpin for DescriptorSet<B>
impl<B> UnwindSafe for DescriptorSet<B>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more