rustc_term 0.0.1

Rust's libtest terminal formatting library
rustc_term-0.0.1 doesn't have any documentation.
Terminal formatting library. This crate provides the `Terminal` trait, which abstracts over an [ANSI Terminal][ansi] to provide color printing, among other things. There are two implementations, the `TerminfoTerminal`, which uses control characters from a [terminfo][ti] database, and `WinConsole`, which uses the [Win32 Console API][win]. # Examples ```no_run # #![feature(rustc_private)] extern crate term; use std::io::prelude::*; fn main() { let mut t = term::stdout().unwrap(); t.fg(term::color::GREEN).unwrap(); write!(t, "hello, ").unwrap(); t.fg(term::color::RED).unwrap(); writeln!(t, "world!").unwrap(); assert!(t.reset().unwrap()); } ``` [ansi]: https://en.wikipedia.org/wiki/ANSI_escape_code [win]: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682010%28v=vs.85%29.aspx [ti]: https://en.wikipedia.org/wiki/Terminfo