pub trait ProxyTrait: ProxyObjBase + Sized {
    fn get_user_id<Arg0: CodecInto<ManagedAddress<Self::Api>>>(
        &mut self,
        address: Arg0
    ) -> ContractCallNoPayment<Self::Api, usize> { ... } fn get_user_address<Arg0: CodecInto<usize>>(
        &mut self,
        user_id: Arg0
    ) -> ContractCallNoPayment<Self::Api, ManagedAddress<Self::Api>> { ... } fn get_num_users(&mut self) -> ContractCallNoPayment<Self::Api, usize> { ... } fn update_user_address<Arg0: CodecInto<MultiValueEncoded<Self::Api, ManagedAddress<Self::Api>>>>(
        &mut self,
        addresses: Arg0
    ) -> ContractCallNoPayment<Self::Api, ()> { ... } }

Provided Methods§

Implementors§