pub trait ProxyTrait: ProxyObjBase + Sized {
    fn is_admin<Arg0: CodecInto<ManagedAddress<Self::Api>>>(
        &mut self,
        address: Arg0
    ) -> ContractCallNoPayment<Self::Api, bool> { ... } fn add_admin<Arg0: CodecInto<ManagedAddress<Self::Api>>>(
        &mut self,
        address: Arg0
    ) -> ContractCallNoPayment<Self::Api, ()> { ... } fn remove_admin<Arg0: CodecInto<ManagedAddress<Self::Api>>>(
        &mut self,
        address: Arg0
    ) -> ContractCallNoPayment<Self::Api, ()> { ... } fn admins(
        &mut self
    ) -> ContractCallNoPayment<Self::Api, UnorderedSetMapper<Self::Api, ManagedAddress<Self::Api>>> { ... } }

Provided Methods§

Implementors§