[][src]Enum tinytga::ImageType

pub enum ImageType {
    Empty,
    ColorMapped,
    Truecolor,
    Monochrome,
    RleColorMapped,
    RleTruecolor,
    RleMonochrome,
}

Image type

Variants

Empty

Image contains no pixel data

ColorMapped

Color mapped image

Truecolor

Truecolor image

Monochrome

Monochrome (greyscale) image

RleColorMapped

Run length encoded color mapped image

RleTruecolor

Run length encoded RGB image

RleMonochrome

Run length encoded monochrome (greyscale) image

Trait Implementations

impl Clone for ImageType[src]

impl Copy for ImageType[src]

impl Debug for ImageType[src]

impl Eq for ImageType[src]

impl Hash for ImageType[src]

impl Ord for ImageType[src]

impl PartialEq<ImageType> for ImageType[src]

impl PartialOrd<ImageType> for ImageType[src]

impl StructuralEq for ImageType[src]

impl StructuralPartialEq for ImageType[src]

Auto Trait Implementations

impl Send for ImageType

impl Sync for ImageType

impl Unpin for ImageType

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, 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.