[][src]Enum termimage::AnsiOutputFormat

pub enum AnsiOutputFormat {
    Truecolor,
    SimpleBlack,
    SimpleWhite,
}

Supported ANSI output formats

Variants

Truecolor

Truecolor ANSI 24-bit colour

SimpleBlack

Dumb ANSI 3-bit colour, for black backgrounds

SimpleWhite

Dumb ANSI 3-bit colour, for white backgrounds

Trait Implementations

impl Clone for AnsiOutputFormat[src]

impl Copy for AnsiOutputFormat[src]

impl Debug for AnsiOutputFormat[src]

impl Eq for AnsiOutputFormat[src]

impl Hash for AnsiOutputFormat[src]

impl Ord for AnsiOutputFormat[src]

impl PartialEq<AnsiOutputFormat> for AnsiOutputFormat[src]

impl PartialOrd<AnsiOutputFormat> for AnsiOutputFormat[src]

impl StructuralEq for AnsiOutputFormat[src]

impl StructuralPartialEq for AnsiOutputFormat[src]

Auto Trait Implementations

impl RefUnwindSafe for AnsiOutputFormat

impl Send for AnsiOutputFormat

impl Sync for AnsiOutputFormat

impl Unpin for AnsiOutputFormat

impl UnwindSafe for AnsiOutputFormat

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> Pointable for T[src]

type Init = T

The type for initializers.

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.