[][src]Enum nixterm::xterm::XColor

pub enum XColor {
    Index(u8),
    Rgbi(f32f32f32),
    Rgb(u16u16u16),
    Raw(String),
}

Variants

Index(u8)Rgbi(f32f32f32)Rgb(u16u16u16)Raw(String)

Trait Implementations

impl From<Color> for XColor[src]

impl From<(u16, u16, u16)> for XColor[src]

impl From<(f32, f32, f32)> for XColor[src]

impl<'a> From<&'a str> for XColor[src]

impl From<String> for XColor[src]

impl Clone for XColor[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for XColor[src]

Auto Trait Implementations

impl Send for XColor

impl Unpin for XColor

impl Sync for XColor

impl UnwindSafe for XColor

impl RefUnwindSafe for XColor

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]