#[repr(C)]pub struct Termios {
pub c_iflag: i32,
pub c_oflag: i32,
pub c_cflag: i32,
pub c_lflag: i32,
}
Expand description
The reason we don’t use Bindgen to generate the structures is to keep this crate as small as possible, to suit it’s one purpose. Most users will know what this struct is, if they are familiar with Libc. If, not I suggest you have a look.
Fields§
§c_iflag: i32
§c_oflag: i32
§c_cflag: i32
§c_lflag: i32
Auto Trait Implementations§
impl Freeze for Termios
impl RefUnwindSafe for Termios
impl Send for Termios
impl Sync for Termios
impl Unpin for Termios
impl UnwindSafe for Termios
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more