[][src]Enum mdcat::ImageCapability

pub enum ImageCapability {
    NoImages,
    Terminology(TerminologyImages),
    ITerm2(ITerm2Images),
    Kitty(KittyImages),
}

The capability of the terminal to write images inline.

Variants

NoImages

The terminal can't write images inline.

Terminology(TerminologyImages)

The terminal understands the terminology way of inline images.

ITerm2(ITerm2Images)

The terminal understands the iterm2 way of inline images.

Kitty(KittyImages)

The terminal understands the Kitty way of inline images.

Trait Implementations

impl Clone for ImageCapability[src]

impl Copy for ImageCapability[src]

impl Debug for ImageCapability[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> SetParameter for T

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.