pub struct ExtractionResult {
pub plugin_dir: PathBuf,
pub files_extracted: usize,
pub directories_created: usize,
pub total_bytes: u64,
pub plugin_name: String,
pub plugin_version: String,
}Expand description
Extraction result with statistics
Fields§
§plugin_dir: PathBufPath to the extracted plugin directory
files_extracted: usizeNumber of files extracted
directories_created: usizeNumber of directories created
total_bytes: u64Total bytes extracted
plugin_name: StringPlugin name from manifest
plugin_version: StringPlugin version from manifest
Trait Implementations§
Source§impl Clone for ExtractionResult
impl Clone for ExtractionResult
Source§fn clone(&self) -> ExtractionResult
fn clone(&self) -> ExtractionResult
Returns a duplicate of the value. Read more
1.0.0 · 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 ExtractionResult
impl RefUnwindSafe for ExtractionResult
impl Send for ExtractionResult
impl Sync for ExtractionResult
impl Unpin for ExtractionResult
impl UnsafeUnpin for ExtractionResult
impl UnwindSafe for ExtractionResult
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