Trait tiff_encoder::FieldValues [−][src]
pub trait FieldValues: Sealed { }The values contained or pointed at by an IFD Field.
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.
It is not possible to implement this trait manually outside of this crate.
Implementors
impl FieldValues for OffsetsToIfdsimpl<T: Datablock + 'static> FieldValues for Offsets<T>impl<T: TiffType + 'static> FieldValues for TiffTypeValues<T>