pub trait FromVal<E, V> where
    E: Env, 
{ fn from_val(env: &E, v: V) -> Self; }
Expand description

Used to do conversions between values in the Soroban environment.

Required Methods

Implementors