pub trait ProxyTrait: ProxyObjBase + Sized {
    // Provided methods
    fn is_paused(
        self
    ) -> ContractCall<Self::Api, <bool as TopEncodeMulti>::DecodeAs> { ... }
    fn pause_endpoint(
        self
    ) -> ContractCall<Self::Api, <SCResult<()> as TopEncodeMulti>::DecodeAs> { ... }
    fn unpause_endpoint(
        self
    ) -> ContractCall<Self::Api, <SCResult<()> as TopEncodeMulti>::DecodeAs> { ... }
}

Provided Methods§

source

fn is_paused( self ) -> ContractCall<Self::Api, <bool as TopEncodeMulti>::DecodeAs>

source

fn pause_endpoint( self ) -> ContractCall<Self::Api, <SCResult<()> as TopEncodeMulti>::DecodeAs>

source

fn unpause_endpoint( self ) -> ContractCall<Self::Api, <SCResult<()> as TopEncodeMulti>::DecodeAs>

Object Safety§

This trait is not object safe.

Implementors§