pub struct MinGuestListEntry {
pub name: Cow<'static, str>,
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
path: Cow<'static, str>The path to the ELF binary
Trait Implementations§
Source§impl Clone for MinGuestListEntry
impl Clone for MinGuestListEntry
Source§fn clone(&self) -> MinGuestListEntry
fn clone(&self) -> MinGuestListEntry
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 MinGuestListEntry
impl RefUnwindSafe for MinGuestListEntry
impl Send for MinGuestListEntry
impl Sync for MinGuestListEntry
impl Unpin for MinGuestListEntry
impl UnwindSafe for MinGuestListEntry
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