pub struct Options {
pub duplicates: bool,
pub print_conv: bool,
pub fast_scan: u8,
pub requested_tags: Vec<String>,
pub extract_embedded: u8,
pub show_unknown: u8,
pub process_compressed: bool,
pub use_mwg: bool,
}Expand description
Processing options for metadata extraction.
Fields§
§duplicates: boolInclude duplicate tags (different groups may have same tag name).
print_conv: boolApply print conversions (human-readable values).
fast_scan: u8Fast scan level: 0=normal, 1=skip composite, 2=skip maker notes, 3=skip thumbnails.
Only extract these tag names (empty = all).
extract_embedded: u8Extract embedded documents/data (video frames, etc.). Level: 0=off, 1=-ee, 2=-ee2, 3=-ee3.
show_unknown: u8Show unknown tags: 0=off, 1=-u (show unknown), 2=-U (show unknown + binary data).
process_compressed: boolProcess compressed data in files (-z option).
use_mwg: boolUse MWG (Metadata Working Group) composite tags for reading/writing.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Options
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnsafeUnpin for Options
impl UnwindSafe for Options
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