pub struct CreateReport {
pub manifest: Manifest,
pub out_path: PathBuf,
pub compressed_bytes: u64,
pub dry_run: bool,
}Expand description
What create produced.
Fields§
§manifest: ManifestManifest embedded in the archive (or that would have been, on a dry run).
out_path: PathBufPath of the written archive, or where one would have been written.
compressed_bytes: u64Size of the archive on disk, after compression. 0 on a dry run.
dry_run: boolWhether this was a dry run, in which case nothing was written.
Trait Implementations§
Source§impl Clone for CreateReport
impl Clone for CreateReport
Source§fn clone(&self) -> CreateReport
fn clone(&self) -> CreateReport
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 CreateReport
impl RefUnwindSafe for CreateReport
impl Send for CreateReport
impl Sync for CreateReport
impl Unpin for CreateReport
impl UnsafeUnpin for CreateReport
impl UnwindSafe for CreateReport
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