pub trait ProxyTrait: ProxyObjBase + Sized {
    fn pause_endpoint(&mut self) -> ContractCallNoPayment<Self::Api, ()> { ... }
    fn unpause_endpoint(&mut self) -> ContractCallNoPayment<Self::Api, ()> { ... }
    fn paused_status(
        &mut self
    ) -> ContractCallNoPayment<Self::Api, SingleValueMapper<Self::Api, bool>> { ... } }

Provided Methods§

Implementors§