pub unsafe trait PipelineLayoutSetsCompatible<Other: ?Sized>: PipelineLayoutDescwhere
    Other: DescriptorSetsCollection,
{ fn is_compatible(&self, _: &Other) -> bool; }
Expand description

Traits that allow determining whether

Required Methods

Returns true if Other can be used with a pipeline that uses self as layout.

Implementors