pub enum OffsetField {
ValueOffset,
ActualValue,
}
Expand description
How to extract offset from IFD entry ExifTool: Different extraction methods for different manufacturers
Variants§
ValueOffset
Use the value offset field from IFD entry ExifTool: Standard TIFF offset where value_offset points to data
ActualValue
Use the actual value as offset ExifTool: The value itself contains the offset (Panasonic pattern)
Trait Implementations§
Source§impl Clone for OffsetField
impl Clone for OffsetField
Source§fn clone(&self) -> OffsetField
fn clone(&self) -> OffsetField
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OffsetField
impl Debug for OffsetField
impl Copy for OffsetField
Auto Trait Implementations§
impl Freeze for OffsetField
impl RefUnwindSafe for OffsetField
impl Send for OffsetField
impl Sync for OffsetField
impl Unpin for OffsetField
impl UnwindSafe for OffsetField
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