[][src]Struct rafx_resources::DescriptorSetAllocator

pub struct DescriptorSetAllocator { /* fields omitted */ }

Implementations

impl DescriptorSetAllocator[src]

pub fn new(device_context: &RafxDeviceContext) -> Self[src]

pub fn metrics(&self) -> DescriptorSetAllocatorMetrics[src]

pub fn flush_changes(&mut self) -> RafxResult<()>[src]

pub fn on_frame_complete(&mut self)[src]

pub fn destroy(&mut self) -> RafxResult<()>[src]

pub fn create_descriptor_set_with_writes(
    &mut self,
    descriptor_set_layout: &ResourceArc<DescriptorSetLayoutResource>,
    write_set: DescriptorSetWriteSet
) -> RafxResult<DescriptorSetArc>
[src]

pub fn create_descriptor_set<'a, T: DescriptorSetInitializer<'a>>(
    &mut self,
    descriptor_set_layout: &ResourceArc<DescriptorSetLayoutResource>,
    args: T
) -> RafxResult<DescriptorSetArc>
[src]

pub fn create_dyn_descriptor_set_uninitialized(
    &mut self,
    descriptor_set_layout: &ResourceArc<DescriptorSetLayoutResource>
) -> RafxResult<DynDescriptorSet>
[src]

pub fn create_dyn_descriptor_set<'a, T: DescriptorSetInitializer<'a>>(
    &mut self,
    descriptor_set_layout: &ResourceArc<DescriptorSetLayoutResource>,
    args: T
) -> RafxResult<<T as DescriptorSetInitializer<'a>>::Output>
[src]

Auto Trait Implementations

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> Downcast for T where
    T: Any

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.