pub struct TagGroup {
pub family0: String,
pub family1: String,
pub family2: String,
pub family3: String,
}Expand description
Identifies the metadata group hierarchy (mirrors ExifTool’s Group0..Group3).
Fields§
§family0: StringFamily 0: Information type (EXIF, IPTC, XMP, ICC_Profile, etc.)
family1: StringFamily 1: Specific location (IFD0, ExifIFD, GPS, XMP-dc, etc.)
family2: StringFamily 2: Category (Image, Camera, Location, Time, Author, etc.)
family3: StringFamily 3: Document number (MAIN_DOCUMENT, “Doc1”, “Doc2”, etc.).
Tags read from the file itself belong to the main document. Formats that
carry repeated or embedded sub-documents (e.g. the timed messages of a
Garmin FIT file under ExtractEmbedded) place each one in its own
numbered document, exactly as ExifTool’s -G3 output does.
Trait Implementations§
impl Eq for TagGroup
impl StructuralPartialEq for TagGroup
Auto Trait Implementations§
impl Freeze for TagGroup
impl RefUnwindSafe for TagGroup
impl Send for TagGroup
impl Sync for TagGroup
impl Unpin for TagGroup
impl UnsafeUnpin for TagGroup
impl UnwindSafe for TagGroup
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