[][src]Struct termorrow::OutputMode

pub struct OutputMode(_);

Implementations

impl OutputMode[src]

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

Post-process output

Gets the value for the flag.

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

Post-process output

Checks if this flag is the only one set.

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

Post-process output

Sets the flag to the given value.

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

Map lower-case to upper-case on output (LEGACY).

Gets the value for the flag.

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

Map lower-case to upper-case on output (LEGACY).

Checks if this flag is the only one set.

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

Map lower-case to upper-case on output (LEGACY).

Sets the flag to the given value.

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

Map NL to CR-NL on output.

Gets the value for the flag.

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

Map NL to CR-NL on output.

Checks if this flag is the only one set.

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

Map NL to CR-NL on output.

Sets the flag to the given value.

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

Map CR to NL on output.

Gets the value for the flag.

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

Map CR to NL on output.

Checks if this flag is the only one set.

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

Map CR to NL on output.

Sets the flag to the given value.

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

No CR output at column 0.

Gets the value for the flag.

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

No CR output at column 0.

Checks if this flag is the only one set.

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

No CR output at column 0.

Sets the flag to the given value.

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

NL performs CR function.

Gets the value for the flag.

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

NL performs CR function.

Checks if this flag is the only one set.

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

NL performs CR function.

Sets the flag to the given value.

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

Use fill characters for delay.

Gets the value for the flag.

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

Use fill characters for delay.

Checks if this flag is the only one set.

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

Use fill characters for delay.

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.