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

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

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§