Enum image::pnm::ArbitraryTuplType[][src]

pub enum ArbitraryTuplType {
    BlackAndWhite,
    BlackAndWhiteAlpha,
    Grayscale,
    GrayscaleAlpha,
    RGB,
    RGBAlpha,
    Custom(String),
}

Standardized tuple type specifiers in the header of a pam.

Variants

Pixels are either black (0) or white (1)

Pixels are either black (0) or white (1) and a second alpha channel

Pixels represent the amount of white

Grayscale with an additional alpha channel

Three channels: Red, Green, Blue

Four channels: Red, Green, Blue, Alpha

An image format which is not standardized

Trait Implementations

impl Clone for ArbitraryTuplType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ArbitraryTuplType
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations