Terminal
This is an implementation using the standard library of Console.
Usage
This crate exposes the Zero-Sized Type Terminal that just refers to the internals of the implementation.
use Terminal;
use Console;
use Update;
let terminal: Terminal = Terminal;
Terminal.print.sync;
For more information about usage and features, see libutils_console.
When to use it
Use this type when you want to have a Console environment in a normal Rust program.
![WARNING] Libraries should NOT implement direct calls to a certain
ConsolelikeTerminal, but allow the caller binary to provide one.