pub trait ProxyTrait: ProxyObjBase + Sized {
// Provided method
fn issue_token<Arg0: ProxyArg<ManagedBuffer<Self::Api>>, Arg1: ProxyArg<ManagedBuffer<Self::Api>>, Arg2: ProxyArg<EsdtTokenType>, Arg3: ProxyArg<OptionalValue<usize>>>(
&mut self,
token_display_name: Arg0,
token_ticker: Arg1,
token_type: Arg2,
opt_num_decimals: Arg3,
) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>> { ... }
}
Provided Methods§
fn issue_token<Arg0: ProxyArg<ManagedBuffer<Self::Api>>, Arg1: ProxyArg<ManagedBuffer<Self::Api>>, Arg2: ProxyArg<EsdtTokenType>, Arg3: ProxyArg<OptionalValue<usize>>>( &mut self, token_display_name: Arg0, token_ticker: Arg1, token_type: Arg2, opt_num_decimals: Arg3, ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>>
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.