logo
pub trait SpecializedRenderPipeline {
    type Key: Clone + Hash + PartialEq<Self::Key> + Eq;

    fn specialize(&self, key: Self::Key) -> RenderPipelineDescriptor;
}

Required Associated Types

Required Methods

Implementors