pub struct OverlayBlob {
pub key: String,
pub digest: Option<String>,
pub bytes: Vec<u8>,
}Expand description
Overlay blob entry associated with a snapshot export/import.
Fields§
§key: String§digest: Option<String>§bytes: Vec<u8>Auto Trait Implementations§
impl Freeze for OverlayBlob
impl RefUnwindSafe for OverlayBlob
impl Send for OverlayBlob
impl Sync for OverlayBlob
impl Unpin for OverlayBlob
impl UnwindSafe for OverlayBlob
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