1//! Serial port implementation for POSIX-compliant operating systems. 2 3pub use self::tty::*; 4 5mod error; 6mod poll; 7mod tty;