#[repr(C)]pub struct Termios {
pub iflag: u32,
pub oflag: u32,
pub cflag: u32,
pub lflag: u32,
pub line: u8,
pub cc: [u8; 32],
pub ispeed: u32,
pub ospeed: u32,
}
Expand description
The termios functions describe a general terminal interface that is provided to control asynchronous communications ports.
Fields
iflag: u32
input modes
oflag: u32
ouput modes
cflag: u32
control modes
lflag: u32
local modes
line: u8
cc: [u8; 32]
terminal special characters.
ispeed: u32
ospeed: u32
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Termios
impl UnwindSafe for Termios
Blanket Implementations
Mutably borrows from an owned value. Read more