pub trait ContractPause {
    fn is_paused(&self) -> bool;
    fn set_is_paused(&mut self, pause: bool) -> bool;
}

Required Methods§

Implementors§