pub trait TuiCommand {
// Required methods
fn is_suspend_event_loop(&self) -> bool;
fn is_resume_event_loop(&self) -> bool;
fn is_clear_input_queue(&self) -> bool;
fn is_force_redraw(&self) -> bool;
fn is_stop_event_stream(&self) -> bool;
fn is_start_event_stream(&self) -> bool;
}Required Methods§
fn is_suspend_event_loop(&self) -> bool
fn is_resume_event_loop(&self) -> bool
fn is_clear_input_queue(&self) -> bool
fn is_force_redraw(&self) -> bool
fn is_stop_event_stream(&self) -> bool
fn is_start_event_stream(&self) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".