Struct termion::raw::RawTerminal [] [src]

pub struct RawTerminal<W: Write> { /* fields omitted */ }

A terminal restorer, which keeps the previous state of the terminal, and restores it, when dropped.

Trait Implementations

impl<W: Write> Drop for RawTerminal<W>
[src]

A method called when the value goes out of scope. Read more

impl<W: Write> Deref for RawTerminal<W>
[src]

The resulting type after dereferencing

The method called to dereference a value

impl<W: Write> DerefMut for RawTerminal<W>
[src]

The method called to mutably dereference a value

impl<W: Write> Write for RawTerminal<W>
[src]

Write a buffer into this object, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Attempts to write an entire buffer into this write. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Creates a "by reference" adaptor for this instance of Write. Read more