Trait vulkano::descriptor::descriptor_set::DescriptorSet [] [src]

pub unsafe trait DescriptorSet: 'static + Send + Sync {
    fn inner(&self) -> &UnsafeDescriptorSet;
}

Trait for objects that contain a collection of resources that will be accessible by shaders.

Objects of this type can be passed when submitting a draw command.

Required Methods

Returns the inner UnsafeDescriptorSet.

Implementors