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

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

Required Associated Types

Required Methods

Implementors