Skip to main content

guest_stats

Struct guest_stats 

Source
#[repr(C)]
pub struct guest_stats {
Show 14 fields pub vm_entries: ulong, pub vm_exits: ulong, pub interrupts: ulong, pub interrupt_windows: ulong, pub cpuid_instructions: ulong, pub hlt_instructions: ulong, pub control_register_accesses: ulong, pub io_instructions: ulong, pub rdmsr_instructions: ulong, pub wrmsr_instructions: ulong, pub ept_violations: ulong, pub xsetbv_instructions: ulong, pub pause_instructions: ulong, pub vmcall_instructions: ulong,
}

Fields§

§vm_entries: ulong§vm_exits: ulong§interrupts: ulong§interrupt_windows: ulong§cpuid_instructions: ulong§hlt_instructions: ulong§control_register_accesses: ulong§io_instructions: ulong§rdmsr_instructions: ulong§wrmsr_instructions: ulong§ept_violations: ulong§xsetbv_instructions: ulong§pause_instructions: ulong§vmcall_instructions: ulong

Auto Trait Implementations§

§

impl Freeze for guest_stats

§

impl RefUnwindSafe for guest_stats

§

impl Send for guest_stats

§

impl Sync for guest_stats

§

impl Unpin for guest_stats

§

impl UnsafeUnpin for guest_stats

§

impl UnwindSafe for guest_stats

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = !

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.