pub trait FromVal<E: Env, T> {
// Required method
fn from_val(e: &E, v: &T) -> Self;
}
Expand description
Used to do conversions between values in the Soroban environment.
Required Methods§
Object Safety§
This trait is not object safe.
pub trait FromVal<E: Env, T> {
// Required method
fn from_val(e: &E, v: &T) -> Self;
}
Used to do conversions between values in the Soroban environment.