[][src]Trait vulkano::pipeline::shader::ShaderInterfaceDef

pub unsafe trait ShaderInterfaceDef {
    type Iter: ExactSizeIterator<Item = ShaderInterfaceDefEntry>;
    fn elements(&self) -> Self::Iter;
}

Types that contain the definition of an interface between two shader stages, or between the outside and a shader stage.

Safety

Associated Types

type Iter: ExactSizeIterator<Item = ShaderInterfaceDefEntry>

Iterator returned by elements.

Loading content...

Required methods

fn elements(&self) -> Self::Iter

Iterates over the elements of the interface.

Loading content...

Implementors

impl ShaderInterfaceDef for EmptyShaderInterfaceDef[src]

Loading content...