pub struct Loaded {
pub path: String,
pub bytes: Vec<u8>,
pub verified: bool,
}Expand description
An image read from disk.
Fields§
§path: StringThe path read, as printed.
bytes: Vec<u8>§verified: boolTrue when the manifest’s sha256 was checked.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Loaded
impl RefUnwindSafe for Loaded
impl Send for Loaded
impl Sync for Loaded
impl Unpin for Loaded
impl UnsafeUnpin for Loaded
impl UnwindSafe for Loaded
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