[][src]Struct nix::sys::termios::Termios

pub struct Termios {
    pub input_flags: InputFlags,
    pub output_flags: OutputFlags,
    pub control_flags: ControlFlags,
    pub local_flags: LocalFlags,
    pub control_chars: [cc_t; 32],
    // some fields omitted
}

Stores settings for the termios API

This is a wrapper around the libc::termios struct that provides a safe interface for the standard fields. The only safe way to obtain an instance of this struct is to extract it from an open port using tcgetattr().

Fields

input_flags: InputFlags

Input mode flags (see termios.c_iflag documentation)

output_flags: OutputFlags

Output mode flags (see termios.c_oflag documentation)

control_flags: ControlFlags

Control mode flags (see termios.c_cflag documentation)

local_flags: LocalFlags

Local mode flags (see termios.c_lflag documentation)

control_chars: [cc_t; 32]

Control characters (see termios.c_cc documentation)

Trait Implementations

impl From<termios> for Termios[src]

impl From<Termios> for termios[src]

impl Clone for Termios[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Sync for Termios

impl Send for Termios

impl Unpin for Termios

impl UnwindSafe for Termios

impl !RefUnwindSafe for Termios

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]