#[repr(C)]pub struct KvmCpuidEntry2 {
pub function: u32,
pub index: u32,
pub flags: KvmCpuid2Flag,
pub eax: u32,
pub ebx: u32,
pub ecx: u32,
pub edx: u32,
pub padding: [u32; 3],
}Fields§
§function: u32§index: u32§flags: KvmCpuid2Flag§eax: u32§ebx: u32§ecx: u32§edx: u32§padding: [u32; 3]Trait Implementations§
Source§impl Clone for KvmCpuidEntry2
impl Clone for KvmCpuidEntry2
Source§fn clone(&self) -> KvmCpuidEntry2
fn clone(&self) -> KvmCpuidEntry2
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 KvmCpuidEntry2
impl Debug for KvmCpuidEntry2
Source§impl Default for KvmCpuidEntry2
impl Default for KvmCpuidEntry2
Source§fn default() -> KvmCpuidEntry2
fn default() -> KvmCpuidEntry2
Returns the “default value” for a type. Read more
Source§impl From<KvmCpuidEntry2> for (CpuidIn, CpuidResult)
impl From<KvmCpuidEntry2> for (CpuidIn, CpuidResult)
Source§fn from(value: KvmCpuidEntry2) -> Self
fn from(value: KvmCpuidEntry2) -> Self
Converts to this type from the input type.
impl Copy for KvmCpuidEntry2
Auto Trait Implementations§
impl Freeze for KvmCpuidEntry2
impl RefUnwindSafe for KvmCpuidEntry2
impl Send for KvmCpuidEntry2
impl Sync for KvmCpuidEntry2
impl Unpin for KvmCpuidEntry2
impl UnsafeUnpin for KvmCpuidEntry2
impl UnwindSafe for KvmCpuidEntry2
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