Enum tiff::decoder::DecodingResult [−][src]
pub enum DecodingResult { U8(Vec<u8>), U16(Vec<u16>), U32(Vec<u32>), U64(Vec<u64>), F32(Vec<f32>), F64(Vec<f64>), }
Result of a decoding process
Variants
A vector of unsigned bytes
A vector of unsigned words
A vector of 32 bit unsigned ints
A vector of 64 bit unsigned ints
A vector of 32 bit IEEE floats
A vector of 64 bit IEEE floats
Implementations
impl DecodingResult
[src]
impl DecodingResult
[src]