pub struct ModeFlags {
pub cursor_visible: bool,
pub alt_screen: bool,
pub sync_output_level: u32,
}Expand description
Mode flags tracked by the terminal model.
Fields§
§cursor_visible: boolCursor visibility.
alt_screen: boolAlternate screen buffer active.
sync_output_level: u32DEC 2026 synchronized output nesting level.
Implementations§
Trait Implementations§
impl Eq for ModeFlags
impl StructuralPartialEq for ModeFlags
Auto Trait Implementations§
impl Freeze for ModeFlags
impl RefUnwindSafe for ModeFlags
impl Send for ModeFlags
impl Sync for ModeFlags
impl Unpin for ModeFlags
impl UnsafeUnpin for ModeFlags
impl UnwindSafe for ModeFlags
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more