pub trait IntoVal<E: Env, V>: Sized {
    fn into_val(self, env: &E) -> V;

    fn into_env_val(self, env: &E) -> EnvVal<E, V> { ... }
}

Required Methods§

Provided Methods§

Implementations on Foreign Types§

Implementors§