pub struct GuestListEntry {
pub name: Cow<'static, str>,
pub elf: Cow<'static, [u8]>,
pub image_id: Digest,
pub path: Cow<'static, str>,
}
Expand description
Represents an item in the generated list of compiled guest binaries
Fields§
§name: Cow<'static, str>
The name of the guest binary
elf: Cow<'static, [u8]>
The combined user ELF & kernel ELF guest binary
image_id: Digest
The image id of the guest program.
path: Cow<'static, str>
The path to the ELF binary
Trait Implementations§
Source§impl Clone for GuestListEntry
impl Clone for GuestListEntry
Source§fn clone(&self) -> GuestListEntry
fn clone(&self) -> GuestListEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for GuestListEntry
impl RefUnwindSafe for GuestListEntry
impl Send for GuestListEntry
impl Sync for GuestListEntry
impl Unpin for GuestListEntry
impl UnwindSafe for GuestListEntry
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