pub trait ProxyTrait: ProxyObjBase + Sized + ProxyTrait + ProxyTrait {
    // Provided methods
    fn set_local_roles<Arg0: ProxyArg<ManagedAddress<Self::Api>>, Arg1: ProxyArg<TokenIdentifier<Self::Api>>, Arg2: ProxyArg<MultiValueEncoded<Self::Api, EsdtLocalRole>>>(
        &mut self,
        address: Arg0,
        token_identifier: Arg1,
        roles: Arg2,
    ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>> { ... }
    fn unset_local_roles<Arg0: ProxyArg<ManagedAddress<Self::Api>>, Arg1: ProxyArg<TokenIdentifier<Self::Api>>, Arg2: ProxyArg<MultiValueEncoded<Self::Api, EsdtLocalRole>>>(
        &mut self,
        address: Arg0,
        token_identifier: Arg1,
        roles: Arg2,
    ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>> { ... }
}

Provided Methods§

source

fn set_local_roles<Arg0: ProxyArg<ManagedAddress<Self::Api>>, Arg1: ProxyArg<TokenIdentifier<Self::Api>>, Arg2: ProxyArg<MultiValueEncoded<Self::Api, EsdtLocalRole>>>( &mut self, address: Arg0, token_identifier: Arg1, roles: Arg2, ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>>

source

fn unset_local_roles<Arg0: ProxyArg<ManagedAddress<Self::Api>>, Arg1: ProxyArg<TokenIdentifier<Self::Api>>, Arg2: ProxyArg<MultiValueEncoded<Self::Api, EsdtLocalRole>>>( &mut self, address: Arg0, token_identifier: Arg1, roles: Arg2, ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>>

Object Safety§

This trait is not object safe.

Implementors§