Struct crossterm::AlternateScreen[][src]

pub struct AlternateScreen {
    pub screen: Screen,
    // some 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.

Fields

Methods

impl AlternateScreen
[src]

Create new instance of alternate screen.

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.

Switch the alternate screen back to main screen.

Trait Implementations

impl Drop for AlternateScreen
[src]

This will switch back to main screen on drop.

Auto Trait Implementations