pub struct PackageResult {
pub archive_path: PathBuf,
pub file_count: usize,
pub total_size: usize,
pub compressed_size: usize,
pub skipped_files: Vec<SkippedFile>,
}Expand description
Result of packaging operation
Fields§
§archive_path: PathBufPath to the created tarball
file_count: usizeNumber of files included
total_size: usizeTotal uncompressed size
compressed_size: usizeCompressed size
skipped_files: Vec<SkippedFile>Files that were skipped
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PackageResult
impl RefUnwindSafe for PackageResult
impl Send for PackageResult
impl Sync for PackageResult
impl Unpin for PackageResult
impl UnwindSafe for PackageResult
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