Trait vulkano::descriptor::pipeline_layout::PipelineLayoutDesc [] [src]

pub unsafe trait PipelineLayoutDesc {
    type SetsIter: Iterator<Item=Self::DescIter>;
    type DescIter: Iterator<Item=DescriptorDesc>;
    fn descriptors_desc(&self) -> Self::SetsIter;
}

Trait for objects that describe the layout of the descriptors and push constants of a pipeline.

Associated Types

Iterator that describes descriptor sets.

Iterator that describes individual descriptors.

Required Methods

Describes the layout of the descriptors of the pipeline.

Implementors