Trait orml_traits::parameters::TryFrom2

source ·
pub trait TryFrom2<T>: Sized {
    type Error;

    // Required method
    fn try_from2(value: T) -> Result<Self, Self::Error>;
}

Required Associated Types§

Required Methods§

source

fn try_from2(value: T) -> Result<Self, Self::Error>

Object Safety§

This trait is not object safe.

Implementors§