pub struct TerminalOptions {
pub alternate_screen: bool,
pub hide_cursor: bool,
}Expand description
Options for configuring a terminal.
Fields§
§alternate_screen: boolEnable alternate screen
hide_cursor: boolHide cursor during rendering
Trait Implementations§
Source§impl Clone for TerminalOptions
impl Clone for TerminalOptions
Source§fn clone(&self) -> TerminalOptions
fn clone(&self) -> TerminalOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TerminalOptions
impl Debug for TerminalOptions
Auto Trait Implementations§
impl Freeze for TerminalOptions
impl RefUnwindSafe for TerminalOptions
impl Send for TerminalOptions
impl Sync for TerminalOptions
impl Unpin for TerminalOptions
impl UnwindSafe for TerminalOptions
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