pub enum NikonFormat {
Format1,
Format2,
Format3,
}
Expand description
Nikon MakerNote format variants ExifTool: Different format detection in MakerNotes.pm
Variants§
Format1
Early Nikon format (fallback) ExifTool: Original Nikon format handling
Format2
Mid-generation format
ExifTool: Format with 0x02 0x00 0x00 0x00 signature
Format3
Modern format with TIFF header ExifTool: Format3 with TIFF header at 0x0a
Trait Implementations§
Source§impl Clone for NikonFormat
impl Clone for NikonFormat
Source§fn clone(&self) -> NikonFormat
fn clone(&self) -> NikonFormat
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 NikonFormat
impl Debug for NikonFormat
Source§impl PartialEq for NikonFormat
impl PartialEq for NikonFormat
impl Copy for NikonFormat
impl StructuralPartialEq for NikonFormat
Auto Trait Implementations§
impl Freeze for NikonFormat
impl RefUnwindSafe for NikonFormat
impl Send for NikonFormat
impl Sync for NikonFormat
impl Unpin for NikonFormat
impl UnwindSafe for NikonFormat
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