pub trait DescriptorSetInitializer<'a> {
    type Output;

    // Required methods
    fn create_dyn_descriptor_set(
        descriptor_set: DynDescriptorSet,
        args: Self
    ) -> Self::Output;
    fn create_descriptor_set(
        descriptor_set_allocator: &mut DescriptorSetAllocator,
        descriptor_set: DynDescriptorSet,
        args: Self
    ) -> RafxResult<DescriptorSetArc>;
}

Required Associated Types§

Required Methods§

source

fn create_dyn_descriptor_set( descriptor_set: DynDescriptorSet, args: Self ) -> Self::Output

source

fn create_descriptor_set( descriptor_set_allocator: &mut DescriptorSetAllocator, descriptor_set: DynDescriptorSet, args: Self ) -> RafxResult<DescriptorSetArc>

Object Safety§

This trait is not object safe.

Implementors§