1
2
3
4
5
6
7
//! Serial port implementation for POSIX-compliant operating systems.

pub use self::tty::*;

mod error;
mod poll;
mod tty;