pub enum TagId {
Numeric(u16),
Text(String),
}Expand description
Tag identifier - can be numeric (EXIF/IPTC) or string (XMP).
Variants§
Numeric(u16)
Numeric ID (EXIF IFD tag, IPTC record:dataset)
Text(String)
String key (XMP property path)
Trait Implementations§
impl Eq for TagId
impl StructuralPartialEq for TagId
Auto Trait Implementations§
impl Freeze for TagId
impl RefUnwindSafe for TagId
impl Send for TagId
impl Sync for TagId
impl Unpin for TagId
impl UnsafeUnpin for TagId
impl UnwindSafe for TagId
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