pub trait ProxyTrait: ProxyObjBase + Sized {
    // Provided methods
    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§

source

fn is_admin<Arg0: CodecInto<ManagedAddress<Self::Api>>>( &mut self, address: Arg0 ) -> ContractCallNoPayment<Self::Api, bool>

source

fn add_admin<Arg0: CodecInto<ManagedAddress<Self::Api>>>( &mut self, address: Arg0 ) -> ContractCallNoPayment<Self::Api, ()>

source

fn remove_admin<Arg0: CodecInto<ManagedAddress<Self::Api>>>( &mut self, address: Arg0 ) -> ContractCallNoPayment<Self::Api, ()>

source

fn admins( &mut self ) -> ContractCallNoPayment<Self::Api, UnorderedSetMapper<Self::Api, ManagedAddress<Self::Api>>>

Object Safety§

This trait is not object safe.

Implementors§