Trait term::UnwrappableTerminalUnstable
[-] [+]
[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
impl<T: Write + Send + 'static> UnwrappableTerminal<T> for TerminfoTerminal<T>