Struct termion::screen::AlternateScreen
[−]
[src]
pub struct AlternateScreen<W: Write> { /* fields omitted */ }
A terminal restorer, which wraps a type implementing Write, and causes all writes to be written to an alternate screen.
This is achieved by switching the terminal to the alternate screen on creation and automatically switching it back to the original screen on drop.
Methods
impl<W: Write> AlternateScreen<W>
[src]
impl<W: Write> AlternateScreen<W>
pub fn from(output: W) -> Self
[src]
pub fn from(output: W) -> Self
Create an alternate screen wrapper struct for the provided output and switch the terminal to the alternate screen.
Trait Implementations
impl<W: Write> Drop for AlternateScreen<W>
[src]
impl<W: Write> Drop for AlternateScreen<W>
impl<W: Write> Deref for AlternateScreen<W>
[src]
impl<W: Write> Deref for AlternateScreen<W>
type Target = W
The resulting type after dereferencing.
ⓘImportant traits for &'a mut Rfn deref(&self) -> &W
[src]
fn deref(&self) -> &W
Dereferences the value.
impl<W: Write> DerefMut for AlternateScreen<W>
[src]
impl<W: Write> DerefMut for AlternateScreen<W>
ⓘImportant traits for &'a mut Rfn deref_mut(&mut self) -> &mut W
[src]
fn deref_mut(&mut self) -> &mut W
Mutably dereferences the value.
impl<W: Write> Write for AlternateScreen<W>
[src]
impl<W: Write> Write for AlternateScreen<W>
fn write(&mut self, buf: &[u8]) -> Result<usize>
[src]
fn write(&mut self, buf: &[u8]) -> Result<usize>
Write a buffer into this object, returning how many bytes were written. Read more
fn flush(&mut self) -> Result<()>
[src]
fn flush(&mut self) -> Result<()>
Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
1.0.0[src]
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this write. Read more
fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>
1.0.0[src]
fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>
Writes a formatted string into this writer, returning any error encountered. Read more
ⓘImportant traits for &'a mut Rfn by_ref(&mut self) -> &mut Self
1.0.0[src]
fn by_ref(&mut self) -> &mut Self
Creates a "by reference" adaptor for this instance of Write
. Read more
Auto Trait Implementations
impl<W> Send for AlternateScreen<W> where
W: Send,
impl<W> Send for AlternateScreen<W> where
W: Send,
impl<W> Sync for AlternateScreen<W> where
W: Sync,
impl<W> Sync for AlternateScreen<W> where
W: Sync,