pub trait TryIntoVal<E, V>: Sizedwhere
    E: Env,
{ type Error; fn try_into_val(self, env: &E) -> Result<V, Self::Error>; fn try_into_env_val(self, env: &E) -> Result<EnvVal<E, V>, Self::Error> { ... } }
Expand description

Used to do conversions between values in the Soroban environment.

Required Associated Types§

Required Methods§

Provided Methods§

Implementations on Foreign Types§

Implementors§