pub trait ProxyTrait: ProxyObjBase + Sized {
// Provided methods
fn is_paused(
self
) -> ContractCall<Self::Api, <bool as EndpointResult>::DecodeAs> { ... }
fn pause_endpoint(
self
) -> ContractCall<Self::Api, <SCResult<()> as EndpointResult>::DecodeAs> { ... }
fn unpause_endpoint(
self
) -> ContractCall<Self::Api, <SCResult<()> as EndpointResult>::DecodeAs> { ... }
}Provided Methods§
fn is_paused( self ) -> ContractCall<Self::Api, <bool as EndpointResult>::DecodeAs>
fn pause_endpoint( self ) -> ContractCall<Self::Api, <SCResult<()> as EndpointResult>::DecodeAs>
fn unpause_endpoint( self ) -> ContractCall<Self::Api, <SCResult<()> as EndpointResult>::DecodeAs>
Object Safety§
This trait is not object safe.