pub struct IfdPointer(pub u64);Expand description
Identifies the offset of an IFD.
This is represented as a 64-bit integer but only BigTIFF can utilize the bits. It is encoded
as 32-bit unsigned value (Type::LONG) in regular TIFF files and as 64-bit unsigned value
(Type::IFD8) in BigTIFF files.
Tuple Fields§
§0: u64Trait Implementations§
Source§impl Clone for IfdPointer
impl Clone for IfdPointer
Source§fn clone(&self) -> IfdPointer
fn clone(&self) -> IfdPointer
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 IfdPointer
impl Debug for IfdPointer
Source§impl Hash for IfdPointer
impl Hash for IfdPointer
Source§impl LowerHex for IfdPointer
impl LowerHex for IfdPointer
Source§impl PartialEq for IfdPointer
impl PartialEq for IfdPointer
Source§impl UpperHex for IfdPointer
impl UpperHex for IfdPointer
impl Copy for IfdPointer
impl Eq for IfdPointer
impl StructuralPartialEq for IfdPointer
Auto Trait Implementations§
impl Freeze for IfdPointer
impl RefUnwindSafe for IfdPointer
impl Send for IfdPointer
impl Sync for IfdPointer
impl Unpin for IfdPointer
impl UnsafeUnpin for IfdPointer
impl UnwindSafe for IfdPointer
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