pub trait TryIntoVal<E, V>where
    E: Env,{
    type Error: Debug;

    // Required method
    fn try_into_val(&self, env: &E) -> Result<V, Self::Error>;
}

Required Associated Types§

Required Methods§

source

fn try_into_val(&self, env: &E) -> Result<V, Self::Error>

Implementors§

source§

impl<E, T, U> TryIntoVal<E, T> for Uwhere E: Env, T: TryFromVal<E, U>,

§

type Error = <T as TryFromVal<E, U>>::Error