Trait elrond_wasm::io::dyn_arg::DynArg[][src]

pub trait DynArg: Sized {
    fn dyn_load<I, D>(loader: &mut D, arg_id: ArgId) -> Self
    where
        I: TopDecodeInput,
        D: DynArgInput<I>
; }
Expand description

Any type that is used as an endpoint argument must implement this trait.

Required methods

Implementors

All top-deserializable types can be endpoint arguments.