[][src]Enum alacritty_terminal::ansi::StandardCharset

pub enum StandardCharset {
    Ascii,
    SpecialCharacterAndLineDrawing,
}

Standard or common character sets which can be designated as G0-G3.

Variants

Ascii
SpecialCharacterAndLineDrawing

Implementations

impl StandardCharset[src]

pub fn map(self, c: char) -> char[src]

Switch/Map character to the active charset. Ascii is the common case and for that we want to do as little as possible.

Trait Implementations

impl Clone for StandardCharset[src]

impl Copy for StandardCharset[src]

impl Debug for StandardCharset[src]

impl Default for StandardCharset[src]

impl Eq for StandardCharset[src]

impl PartialEq<StandardCharset> for StandardCharset[src]

impl StructuralEq for StandardCharset[src]

impl StructuralPartialEq for StandardCharset[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.