[−][src]Struct rendy_resource::DescriptorSet 
Generic descriptor set resource wrapper.
Methods
impl<B> DescriptorSet<B> where
    B: Backend, 
B: Backend,
pub fn device_id(&self) -> DeviceId
Get owned id.
pub fn assert_device_owner(&self, device: &Device<B>)
Assert specified device is owner.
pub fn instance_id(&self) -> InstanceId
Get owned id.
pub fn assert_instance_owner(&self, instance: &Instance<B>)
Assert specified instance is owner.
impl<B> DescriptorSet<B> where
    B: Backend, [src]
B: Backend,
pub unsafe fn create(
    device: &Device<B>, 
    allocator: &mut DescriptorAllocator<B>, 
    layout: Handle<DescriptorSetLayout<B>>
) -> Result<Self, OutOfMemory>[src]
device: &Device<B>,
allocator: &mut DescriptorAllocator<B>,
layout: Handle<DescriptorSetLayout<B>>
) -> Result<Self, OutOfMemory>
Create new descriptor set.
pub unsafe fn create_many(
    device: &Device<B>, 
    allocator: &mut DescriptorAllocator<B>, 
    layout: Handle<DescriptorSetLayout<B>>, 
    count: u32, 
    extend: &mut impl Extend<Self>
) -> Result<(), OutOfMemory>[src]
device: &Device<B>,
allocator: &mut DescriptorAllocator<B>,
layout: Handle<DescriptorSetLayout<B>>,
count: u32,
extend: &mut impl Extend<Self>
) -> Result<(), OutOfMemory>
Create new descriptor sets.
pub unsafe fn dispose(self, allocator: &mut DescriptorAllocator<B>)[src]
Destroy descriptor set resource.
pub fn raw(&self) -> &B::DescriptorSet[src]
Get reference to raw descriptor set resource.
pub unsafe fn raw_mut(&mut self) -> &mut B::DescriptorSet[src]
Get mutable reference to raw descriptor set resource.
pub fn layout(&mut self) -> &Handle<DescriptorSetLayout<B>>[src]
Get layout of descriptor set.
Trait Implementations
impl<B: Debug + Backend> Debug for DescriptorSet<B>[src]
Auto Trait Implementations
impl<B> Unpin for DescriptorSet<B> where
    <B as Backend>::DescriptorSet: Unpin, 
<B as Backend>::DescriptorSet: Unpin,
impl<B> Sync for DescriptorSet<B> where
    <B as Backend>::DescriptorSet: Sync,
    <B as Backend>::DescriptorSetLayout: Send + Sync, 
<B as Backend>::DescriptorSet: Sync,
<B as Backend>::DescriptorSetLayout: Send + Sync,
impl<B> Send for DescriptorSet<B> where
    <B as Backend>::DescriptorSet: Send,
    <B as Backend>::DescriptorSetLayout: Send + Sync, 
<B as Backend>::DescriptorSet: Send,
<B as Backend>::DescriptorSetLayout: Send + Sync,
impl<B> UnwindSafe for DescriptorSet<B> where
    <B as Backend>::DescriptorSet: UnwindSafe,
    <B as Backend>::DescriptorSetLayout: RefUnwindSafe, 
<B as Backend>::DescriptorSet: UnwindSafe,
<B as Backend>::DescriptorSetLayout: RefUnwindSafe,
impl<B> RefUnwindSafe for DescriptorSet<B> where
    <B as Backend>::DescriptorSet: RefUnwindSafe,
    <B as Backend>::DescriptorSetLayout: RefUnwindSafe, 
<B as Backend>::DescriptorSet: RefUnwindSafe,
<B as Backend>::DescriptorSetLayout: RefUnwindSafe,
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Supports<T> for T[src]
impl<T> SetParameter for T[src]
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, [src]
T: Parameter<Self>,
Sets value as a parameter of self.