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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.