#[repr(C)]pub struct VcpuEvents {
pub pending_interruption: u64,
pub interrupt_state: u64,
pub internal_activity_state: u64,
pub pending_event0: [u8; 16],
pub pending_event1: [u8; 16],
}Fields§
§pending_interruption: u64§interrupt_state: u64§internal_activity_state: u64§pending_event0: [u8; 16]§pending_event1: [u8; 16]Trait Implementations§
Source§impl Clone for VcpuEvents
impl Clone for VcpuEvents
Source§fn clone(&self) -> VcpuEvents
fn clone(&self) -> VcpuEvents
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 moreSource§impl Debug for VcpuEvents
impl Debug for VcpuEvents
Source§impl Default for VcpuEvents
impl Default for VcpuEvents
Source§fn default() -> VcpuEvents
fn default() -> VcpuEvents
Returns the “default value” for a type. Read more
Source§impl FromBytes for VcpuEvents
impl FromBytes for VcpuEvents
Source§impl FromZeros for VcpuEvents
impl FromZeros for VcpuEvents
Source§impl IntoBytes for VcpuEvents
impl IntoBytes for VcpuEvents
Source§impl PartialEq for VcpuEvents
impl PartialEq for VcpuEvents
Source§impl TryFromBytes for VcpuEvents
impl TryFromBytes for VcpuEvents
Source§fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
Source§fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
Source§fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
impl Copy for VcpuEvents
impl Eq for VcpuEvents
impl StructuralPartialEq for VcpuEvents
Auto Trait Implementations§
impl Freeze for VcpuEvents
impl RefUnwindSafe for VcpuEvents
impl Send for VcpuEvents
impl Sync for VcpuEvents
impl Unpin for VcpuEvents
impl UnwindSafe for VcpuEvents
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