Trait soroban_env_common::CheckedEnvArg
source · pub trait CheckedEnvArg: Sized {
// Provided method
fn check_env_arg<E: Env>(self, _e: &E) -> Result<Self, E::Error> { ... }
}
Expand description
This trait is used by macro-generated dispatch and forwarding functions to check arguments being passed to the Env. The default implementations call through to the Env integrity-checking functions.
Provided Methods§
Object Safety§
This trait is not object safe.