#[repr(C)]pub struct vcpu_time_info {
pub version: u32,
pub pad0: u32,
pub tsc_timestamp: u64,
pub system_time: u64,
pub tsc_to_system_mul: u32,
pub tsc_shift: i8,
pub flags: u8,
pub pad1: [u8; 2],
}Fields§
§version: u32§pad0: u32§tsc_timestamp: u64§system_time: u64§tsc_to_system_mul: u32§tsc_shift: i8§flags: u8§pad1: [u8; 2]Trait Implementations§
Source§impl Clone for vcpu_time_info
impl Clone for vcpu_time_info
Source§fn clone(&self) -> vcpu_time_info
fn clone(&self) -> vcpu_time_info
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 vcpu_time_info
impl Debug for vcpu_time_info
Source§impl Default for vcpu_time_info
impl Default for vcpu_time_info
Source§fn default() -> vcpu_time_info
fn default() -> vcpu_time_info
Returns the “default value” for a type. Read more
impl Copy for vcpu_time_info
Auto Trait Implementations§
impl Freeze for vcpu_time_info
impl RefUnwindSafe for vcpu_time_info
impl Send for vcpu_time_info
impl Sync for vcpu_time_info
impl Unpin for vcpu_time_info
impl UnwindSafe for vcpu_time_info
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