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

U8(&'a mut [u8])

A slice of unsigned bytes

U16(&'a mut [u16])

A slice of unsigned words

U32(&'a mut [u32])

A slice of 32 bit unsigned ints

U64(&'a mut [u64])

A slice of 64 bit unsigned ints

F32(&'a mut [f32])

A slice of 32 bit IEEE floats

F64(&'a mut [f64])

A slice of 64 bit IEEE floats

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.