Trait soroban_sdk::IntoVal

source ·
pub trait IntoVal<E: Env, T> {
    // Required method
    fn into_val(&self, e: &E) -> T;
}
Expand description

Used to do conversions between values in the Soroban environment.

Required Methods§

source

fn into_val(&self, e: &E) -> T

Implementors§

source§

impl<E: Env, T, U> IntoVal<E, T> for Uwhere T: FromVal<E, Self>,