pub struct ArtifactMeta {
pub relative_path: String,
pub uncompressed_size: u64,
pub chunk_count: u32,
pub compressed: bool,
}Expand description
Slim per-file (per-artifact) metadata for browsing an archive without reading file bytes. One row per file, aggregated across its chunks.
Fields§
§relative_path: String§uncompressed_size: u64Total uncompressed size across all of the file’s chunks.
chunk_count: u32§compressed: boolWhether the file’s data was compressed (false on the stored-raw skip path).
Trait Implementations§
Source§impl Clone for ArtifactMeta
impl Clone for ArtifactMeta
Source§fn clone(&self) -> ArtifactMeta
fn clone(&self) -> ArtifactMeta
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 moreSource§impl Debug for ArtifactMeta
impl Debug for ArtifactMeta
Source§impl PartialEq for ArtifactMeta
impl PartialEq for ArtifactMeta
impl StructuralPartialEq for ArtifactMeta
Auto Trait Implementations§
impl Freeze for ArtifactMeta
impl RefUnwindSafe for ArtifactMeta
impl Send for ArtifactMeta
impl Sync for ArtifactMeta
impl Unpin for ArtifactMeta
impl UnsafeUnpin for ArtifactMeta
impl UnwindSafe for ArtifactMeta
Blanket Implementations§
impl<T> Allocation for T
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