Enum rawloader::RawImageData[][src]

pub enum RawImageData {
    Integer(Vec<u16>),
    Float(Vec<f32>),
}

The actual image data, after decoding

Variants

The most usual u16 output of almost all formats

Some formats are directly encoded as f32, most notably some DNGs

Trait Implementations

impl Debug for RawImageData
[src]

Formats the value using the given formatter. Read more

impl Clone for RawImageData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations