Trait sp_runtime::traits::Morph
source · pub trait Morph<A> {
type Outcome;
// Required method
fn morph(a: A) -> Self::Outcome;
}
Expand description
Extensible conversion trait. Generic over only source type, with destination type being associated.