pub struct OciTag(/* 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 tag naming one snapshot inside an OCI Image Layout directory.
Used to save a snapshot under a name and to load it back by that
same name.
Implementations§
Trait Implementations§
impl Eq for OciTag
Source§impl From<OciTag> for OciReference
impl From<OciTag> for OciReference
Source§fn from(tag: OciTag) -> OciReference
fn from(tag: OciTag) -> OciReference
Converts to this type from the input type.
impl StructuralPartialEq for OciTag
Auto Trait Implementations§
impl Freeze for OciTag
impl RefUnwindSafe for OciTag
impl Send for OciTag
impl Sync for OciTag
impl Unpin for OciTag
impl UnsafeUnpin for OciTag
impl UnwindSafe for OciTag
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