[][src]Enum ncursesw::Legacy

pub enum Legacy {
    Level0,
    Level1,
    Level2,
}

Override locale-encoding checks.

Variants

Level0

The NCurses library functions normally, rendering nonprinting characters as described in unctrl().

Level1

The NCurses library ignores isprintf() for codes in the range 160-255.

Level2

The NCurses library ignores isprintf() for codes in the range 128-255. It also modifies the output of unctrl(), showing codes in the range 128-159 as is.

Trait Implementations

impl Clone for Legacy[src]

impl Copy for Legacy[src]

impl Debug for Legacy[src]

impl Eq for Legacy[src]

impl Hash for Legacy[src]

impl PartialEq<Legacy> for Legacy[src]

impl StructuralEq for Legacy[src]

impl StructuralPartialEq for Legacy[src]

Auto Trait Implementations

impl RefUnwindSafe for Legacy

impl Send for Legacy

impl Sync for Legacy

impl Unpin for Legacy

impl UnwindSafe for Legacy

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.