pub struct OciDigest(/* private fields */);Expand description
OCI Image Layout reference types used by Snapshot::save /
Snapshot::load to identify snapshots inside an OCI Image Layout
directory. Re-exported here so downstream crates do not need a
direct dependency on hyperlight-host.
A sha256 content digest in canonical sha256:<64 lowercase hex>
form, identifying one snapshot by the bytes of its manifest.
Names that snapshot for loading even when no tag points at it.
Implementations§
Trait Implementations§
impl Eq for OciDigest
Source§impl From<OciDigest> for OciReference
impl From<OciDigest> for OciReference
Source§fn from(digest: OciDigest) -> OciReference
fn from(digest: OciDigest) -> OciReference
Converts to this type from the input type.
impl StructuralPartialEq for OciDigest
Auto Trait Implementations§
impl Freeze for OciDigest
impl RefUnwindSafe for OciDigest
impl Send for OciDigest
impl Sync for OciDigest
impl Unpin for OciDigest
impl UnsafeUnpin for OciDigest
impl UnwindSafe for OciDigest
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