Trait soroban_sdk::TryFromVal
pub trait TryFromVal<E, V>: Sizedwhere
E: Env,
V: ?Sized,{
type Error: Debug;
// Required method
fn try_from_val(env: &E, v: &V) -> Result<Self, Self::Error>;
}
Expand description
Used to do conversions between values in the Soroban environment.