pub trait ProxyTrait: ProxyObjBase + Sized + ProxyTrait + ProxyTrait {
fn set_local_roles<Arg0: CodecInto<ManagedAddress<Self::Api>>, Arg1: CodecInto<TokenIdentifier<Self::Api>>, Arg2: CodecInto<MultiValueEncoded<Self::Api, EsdtLocalRole>>>(
&mut self,
address: Arg0,
token_identifier: Arg1,
roles: Arg2
) -> ContractCallNoPayment<Self::Api, ()> { ... }
fn unset_local_roles<Arg0: CodecInto<ManagedAddress<Self::Api>>, Arg1: CodecInto<TokenIdentifier<Self::Api>>, Arg2: CodecInto<MultiValueEncoded<Self::Api, EsdtLocalRole>>>(
&mut self,
address: Arg0,
token_identifier: Arg1,
roles: Arg2
) -> ContractCallNoPayment<Self::Api, ()> { ... }
}