pub struct Options {
pub duplicates: bool,
pub print_conv: bool,
pub fast_scan: u8,
pub requested_tags: Vec<String>,
pub extract_embedded: u8,
}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.
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