FieldValues

Trait FieldValues 

Source
pub trait FieldValues<O: OffsetSize = u32>: Sealed<O> { }
Expand description

The values contained or pointed at by an IFD Field.

Generic over O: OffsetSize to support both TIFF (u32) and BigTIFF (u64).

There are three groups of FieldValues: TiffTypeValues, Offsets and OffsetsToIfds. The first represents a list of values of any given TiffType. The second represents a list of LONG values, each pointing to a specific Datablock. The third represents a list of IFD values, each pointing to an Ifd.

This trait is sealed. It is not possible to implement it outside this crate.

Implementors§