[][src]Struct termorrow::LocalMode

pub struct LocalMode(_);

Implementations

impl LocalMode[src]

pub fn echo(&self) -> bool[src]

Enable echo.

Gets the value for the flag.

pub fn only_echo(&self) -> bool[src]

Enable echo.

Checks if this flag is the only one set.

pub fn set_echo(&mut self, value: bool) -> &Self[src]

Enable echo.

Sets the flag to the given value.

pub fn echoe(&self) -> bool[src]

Echo erase character as error-correcting backspace.

Gets the value for the flag.

pub fn only_echoe(&self) -> bool[src]

Echo erase character as error-correcting backspace.

Checks if this flag is the only one set.

pub fn set_echoe(&mut self, value: bool) -> &Self[src]

Echo erase character as error-correcting backspace.

Sets the flag to the given value.

pub fn echok(&self) -> bool[src]

Echo KILL.

Gets the value for the flag.

pub fn only_echok(&self) -> bool[src]

Echo KILL.

Checks if this flag is the only one set.

pub fn set_echok(&mut self, value: bool) -> &Self[src]

Echo KILL.

Sets the flag to the given value.

pub fn echonl(&self) -> bool[src]

Echo NL.

Gets the value for the flag.

pub fn only_echonl(&self) -> bool[src]

Echo NL.

Checks if this flag is the only one set.

pub fn set_echonl(&mut self, value: bool) -> &Self[src]

Echo NL.

Sets the flag to the given value.

pub fn icanon(&self) -> bool[src]

Canonical input (erase and kill processing).

Gets the value for the flag.

pub fn only_icanon(&self) -> bool[src]

Canonical input (erase and kill processing).

Checks if this flag is the only one set.

pub fn set_icanon(&mut self, value: bool) -> &Self[src]

Canonical input (erase and kill processing).

Sets the flag to the given value.

pub fn iexten(&self) -> bool[src]

Enable extended input character processing.

Gets the value for the flag.

pub fn only_iexten(&self) -> bool[src]

Enable extended input character processing.

Checks if this flag is the only one set.

pub fn set_iexten(&mut self, value: bool) -> &Self[src]

Enable extended input character processing.

Sets the flag to the given value.

pub fn isig(&self) -> bool[src]

Enable signals.

Gets the value for the flag.

pub fn only_isig(&self) -> bool[src]

Enable signals.

Checks if this flag is the only one set.

pub fn set_isig(&mut self, value: bool) -> &Self[src]

Enable signals.

Sets the flag to the given value.

pub fn noflsh(&self) -> bool[src]

Disable flush after interrupt or quit.

Gets the value for the flag.

pub fn only_noflsh(&self) -> bool[src]

Disable flush after interrupt or quit.

Checks if this flag is the only one set.

pub fn set_noflsh(&mut self, value: bool) -> &Self[src]

Disable flush after interrupt or quit.

Sets the flag to the given value.

pub fn tostop(&self) -> bool[src]

Send SIGTTOU for background output.

Gets the value for the flag.

pub fn only_tostop(&self) -> bool[src]

Send SIGTTOU for background output.

Checks if this flag is the only one set.

pub fn set_tostop(&mut self, value: bool) -> &Self[src]

Send SIGTTOU for background output.

Sets the flag to the given value.

pub fn xcase(&self) -> bool[src]

Canonical upper/lower presentation (LEGACY).

Gets the value for the flag.

pub fn only_xcase(&self) -> bool[src]

Canonical upper/lower presentation (LEGACY).

Checks if this flag is the only one set.

pub fn set_xcase(&mut self, value: bool) -> &Self[src]

Canonical upper/lower presentation (LEGACY).

Sets the flag to the given value.

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, 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.