serial_unix/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
//! Serial port implementation for Unix operating systems.

extern crate serial_core as core;
extern crate libc;
extern crate termios;
extern crate ioctl_rs as ioctl;

pub use tty::*;

mod error;
mod poll;
mod tty;