#[repr(C)]pub struct termios {
pub c_iflag: tcflag_t,
pub c_oflag: tcflag_t,
pub c_cflag: tcflag_t,
pub c_lflag: tcflag_t,
pub c_line: cc_t,
pub c_cc: [cc_t; 32],
pub c_ispeed: speed_t,
pub c_ospeed: speed_t,
}
Fields
c_iflag: tcflag_t
c_oflag: tcflag_t
c_cflag: tcflag_t
c_lflag: tcflag_t
c_line: cc_t
c_cc: [cc_t; 32]
c_ispeed: speed_t
c_ospeed: speed_t
Trait Implementations
sourceimpl Hash for termios
impl Hash for termios
sourcefn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [
Hasher
]. Read more1.3.0fn hash_slice<H>(data: &[Self], state: &mut H)where
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H)where
H: Hasher,
Feeds a slice of this type into the given [
Hasher
]. Read moreimpl Copy for termios
impl Eq for termios
impl StructuralEq for termios
impl StructuralPartialEq for termios
Auto Trait Implementations
impl RefUnwindSafe for termios
impl Send for termios
impl Sync for termios
impl Unpin for termios
impl UnwindSafe for termios
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more