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