Enum image::pnm::SampleEncoding[][src]

pub enum SampleEncoding {
    Binary,
    Ascii,
}

The kind of encoding used to store sample values

Variants

Samples are unsigned binary integers in big endian

Samples are encoded as decimal ascii strings separated by whitespace

Trait Implementations

impl Clone for SampleEncoding
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for SampleEncoding
[src]

impl PartialEq for SampleEncoding
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for SampleEncoding
[src]

impl Debug for SampleEncoding
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for SampleEncoding

impl Sync for SampleEncoding