[][src]Struct crossterm::AlternateScreen

pub struct AlternateScreen { /* fields omitted */ }

With this type you will be able to switch to alternate screen and back to main screen. Check also the Screen type for swishing to alternate mode.

Although this type is available for you to use I would recommend using Screen instead.

Methods

impl AlternateScreen[src]

pub fn to_alternate(raw_mode: bool) -> Result<AlternateScreen, Error>[src]

Switch to alternate screen. This function will return an AlternateScreen instance if everything went well this type will give you control over the AlternateScreen.

The bool specifies whether the screen should be in raw mode or not.

What is Alternate screen?

*Nix style applications often utilize an alternate screen buffer, so that they can modify the entire contents of the buffer, without affecting the application that started them. The alternate buffer is exactly the dimensions of the window, without any scrollback region. For an example of this behavior, consider when vim is launched from bash. Vim uses the entirety of the screen to edit the file, then returning to bash leaves the original buffer unchanged.

pub fn to_main(&self) -> Result<(), Error>[src]

Switch the alternate screen back to main screen.

Trait Implementations

impl Drop for AlternateScreen[src]

fn drop(&mut self)[src]

This will switch back to main screen on drop.

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]