Trait term::UnwrappableTerminal [] [src]

pub trait UnwrappableTerminal<T: Write>: Terminal<T> {
    fn unwrap(self) -> T;
}

A terminal which can be unwrapped.

Required Methods

fn unwrap(self) -> T

Returns the contained stream, destroying the Terminal

Implementors