pub struct ScrubResult {
pub cleaned_file_bytes: Vec<u8>,
pub metadata_removed: Vec<MetadataEntry>,
}Expand description
The result of a successful scrub operation.
Fields§
§cleaned_file_bytes: Vec<u8>The bytes of the new, cleaned file.
metadata_removed: Vec<MetadataEntry>A report of the metadata entries that were removed.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScrubResult
impl RefUnwindSafe for ScrubResult
impl Send for ScrubResult
impl Sync for ScrubResult
impl Unpin for ScrubResult
impl UnsafeUnpin for ScrubResult
impl UnwindSafe for ScrubResult
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