pub trait DescriptorSetAlloc: Send + Sync {
    // Required methods
    fn inner(&self) -> &DescriptorPoolAlloc;
    fn pool(&self) -> &DescriptorPool;
}
Expand description

An allocated descriptor set.

Required Methods§

source

fn inner(&self) -> &DescriptorPoolAlloc

Returns the internal object that contains the descriptor set.

source

fn pool(&self) -> &DescriptorPool

Returns the descriptor pool that the descriptor set was allocated from.

Implementors§