pub struct MetadataRepairOptions {
pub validation_options: ValidationOptions,
pub output_dir: PathBuf,
pub prefix: String,
}Expand description
Options for safe metadata repair.
Fields§
§validation_options: ValidationOptionsValidation options used to parse and classify repair inputs.
output_dir: PathBufCanonical output directory where repaired files are written.
prefix: StringPrefix added to each output filename.
Implementations§
Trait Implementations§
Source§impl Clone for MetadataRepairOptions
impl Clone for MetadataRepairOptions
Source§fn clone(&self) -> MetadataRepairOptions
fn clone(&self) -> MetadataRepairOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MetadataRepairOptions
impl RefUnwindSafe for MetadataRepairOptions
impl Send for MetadataRepairOptions
impl Sync for MetadataRepairOptions
impl Unpin for MetadataRepairOptions
impl UnsafeUnpin for MetadataRepairOptions
impl UnwindSafe for MetadataRepairOptions
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