pub enum GuestBinary {
Buffer(Vec<u8>),
FilePath(String),
}
Expand description
A GuestBinary
is either a buffer containing the binary or a path to the binary
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GuestBinary
impl RefUnwindSafe for GuestBinary
impl Send for GuestBinary
impl Sync for GuestBinary
impl Unpin for GuestBinary
impl UnwindSafe for GuestBinary
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