pub struct TiffFile {
pub order: ByteOrder,
pub variant: Variant,
pub ifds: Vec<Ifd>,
}Expand description
A parsed TIFF/IFD stream: its byte order, container variant, and the chain of Image File Directories.
Fields§
§order: ByteOrderThe byte order the stream was written in.
variant: VariantWhether the stream is classic TIFF or BigTIFF (which sizes its offsets/counts).
ifds: Vec<Ifd>The Image File Directories, in stream order (one per subfile/page).
Trait Implementations§
impl StructuralPartialEq for TiffFile
Auto Trait Implementations§
impl Freeze for TiffFile
impl RefUnwindSafe for TiffFile
impl Send for TiffFile
impl Sync for TiffFile
impl Unpin for TiffFile
impl UnsafeUnpin for TiffFile
impl UnwindSafe for TiffFile
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more