[][src]Enum nix::sys::termios::SpecialCharacterIndices

#[repr(usize)]
pub enum SpecialCharacterIndices {
    VDISCARD,
    VEOF,
    VEOL,
    VEOL2,
    VERASE,
    VINTR,
    VKILL,
    VLNEXT,
    VMIN,
    VQUIT,
    VREPRINT,
    VSTART,
    VSTOP,
    VSUSP,
    VSWTC,
    VTIME,
    VWERASE,
}

Indices into the termios.c_cc array for special characters.

Variants

VDISCARD
VEOF
VEOL
VEOL2
VERASE
VINTR
VKILL
VLNEXT
VMIN
VQUIT
VREPRINT
VSTART
VSTOP
VSUSP
VSWTC
VTIME
VWERASE

Trait Implementations

impl Clone for SpecialCharacterIndices[src]

impl Copy for SpecialCharacterIndices[src]

impl Debug for SpecialCharacterIndices[src]

impl Eq for SpecialCharacterIndices[src]

impl Hash for SpecialCharacterIndices[src]

impl Ord for SpecialCharacterIndices[src]

impl PartialEq<SpecialCharacterIndices> for SpecialCharacterIndices[src]

impl PartialOrd<SpecialCharacterIndices> for SpecialCharacterIndices[src]

impl StructuralEq for SpecialCharacterIndices[src]

impl StructuralPartialEq for SpecialCharacterIndices[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.