multiversx_sc_scenario::imports

Trait ProxyArg

Source
pub trait ProxyArg<O>: TopEncodeMulti { }
Expand description

Trait that is automatically implemented for all types that are allowed as proxy inputs.

Is automatically implemented for all traits that are TypeAbiInto<O> + TopEncodeMulti.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<O, T> ProxyArg<O> for T
where O: TypeAbiFrom<T>, T: TopEncodeMulti,