pub trait TokenStatusV0Accessors {
// Required methods
fn paused(&self) -> bool;
fn set_paused(&mut self, paused: bool);
}Required Methods§
Sourcefn set_paused(&mut self, paused: bool)
fn set_paused(&mut self, paused: bool)
Sets the paused state of the token.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".