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

pub unsafe trait DescriptorSetDesc {
    type Iter: ExactSizeIterator<Item=DescriptorDesc>;
    fn desc(&self) -> Self::Iter;
}

Trait for objects that describe the layout of the descriptors of a set.

Associated Types

Iterator that describes individual descriptors.

Required Methods

Describes the layout of the descriptors of the pipeline.

Implementors