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§

source

fn check_env_arg<E: Env>(self, _e: &E) -> Result<Self, E::Error>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl CheckedEnvArg for i64

source§

impl CheckedEnvArg for u64

Implementors§