pub struct IngestResult {
pub tree: FileTree,
pub uncompressed_digest: String,
}Expand description
Ingest a compressed tar stream, automatically decompressing based on the specified compression format. Result of tar ingestion including the decompressed content hash.
Fields§
§tree: FileTreeThe in-memory file tree built from the tar stream.
uncompressed_digest: StringSHA-256 hex digest of the decompressed tar stream (the OCI diff_id).
Auto Trait Implementations§
impl Freeze for IngestResult
impl RefUnwindSafe for IngestResult
impl Send for IngestResult
impl Sync for IngestResult
impl Unpin for IngestResult
impl UnsafeUnpin for IngestResult
impl UnwindSafe for IngestResult
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