Enum tiff::decoder::DecodingBuffer  [−][src]
pub enum DecodingBuffer<'a> {
    U8(&'a mut [u8]),
    U16(&'a mut [u16]),
    U32(&'a mut [u32]),
    U64(&'a mut [u64]),
    F32(&'a mut [f32]),
    F64(&'a mut [f64]),
}Variants
A slice of unsigned bytes
A slice of unsigned words
A slice of 32 bit unsigned ints
A slice of 64 bit unsigned ints
A slice of 32 bit IEEE floats
A slice of 64 bit IEEE floats