Struct tiff_encoder::Offsets[][src]

pub struct Offsets<T: Datablock> {
    pub data: Vec<T>,
}

A list of LONG values, each pointing to a specific Datablock.

This structure owns the list of Datablocks instead, so the user doesn't have to deal with the offsets in the file. It is responsible for writing both the offsets and the blocks of data.

Fields

Methods

impl<T: Datablock + 'static> Offsets<T>
[src]

Creates a new Offsets instance from a vector of Datablocks.

Creates a new Offsets instance from a single Datablock.

Trait Implementations

impl<T: Datablock + 'static> FieldValues for Offsets<T>
[src]

Auto Trait Implementations

impl<T> Send for Offsets<T> where
    T: Send

impl<T> Sync for Offsets<T> where
    T: Sync