Trait gclient::ext::sp_runtime::traits::TryMorph
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.
Required Associated Types§
type Outcome
type Outcome
The type into which A
is mutated.
Required Methods§
Object Safety§
This trait is not object safe.