pub struct GuestKernelCall {
pub vm_id: String,
pub execution_id: String,
pub operation: String,
pub payload: Vec<u8>,
}Fields§
§vm_id: String§execution_id: String§operation: String§payload: Vec<u8>Trait Implementations§
Source§impl Clone for GuestKernelCall
impl Clone for GuestKernelCall
Source§fn clone(&self) -> GuestKernelCall
fn clone(&self) -> GuestKernelCall
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GuestKernelCall
impl Debug for GuestKernelCall
impl Eq for GuestKernelCall
Source§impl PartialEq for GuestKernelCall
impl PartialEq for GuestKernelCall
Source§fn eq(&self, other: &GuestKernelCall) -> bool
fn eq(&self, other: &GuestKernelCall) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GuestKernelCall
Auto Trait Implementations§
impl Freeze for GuestKernelCall
impl RefUnwindSafe for GuestKernelCall
impl Send for GuestKernelCall
impl Sync for GuestKernelCall
impl Unpin for GuestKernelCall
impl UnsafeUnpin for GuestKernelCall
impl UnwindSafe for GuestKernelCall
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