Struct kvm_sys::x86::bindings::kvm_cpuid_entry2
source · #[repr(C)]pub struct kvm_cpuid_entry2 {
pub function: u32,
pub index: u32,
pub flags: u32,
pub eax: u32,
pub ebx: u32,
pub ecx: u32,
pub edx: u32,
pub padding: [u32; 3],
}
Fields§
§function: u32
§index: u32
§flags: u32
§eax: u32
§ebx: u32
§ecx: u32
§edx: u32
§padding: [u32; 3]
Trait Implementations§
source§impl Clone for kvm_cpuid_entry2
impl Clone for kvm_cpuid_entry2
source§fn clone(&self) -> kvm_cpuid_entry2
fn clone(&self) -> kvm_cpuid_entry2
Returns a copy 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 kvm_cpuid_entry2
impl Debug for kvm_cpuid_entry2
source§impl Default for kvm_cpuid_entry2
impl Default for kvm_cpuid_entry2
source§fn default() -> kvm_cpuid_entry2
fn default() -> kvm_cpuid_entry2
Returns the “default value” for a type. Read more
source§impl FlexibleArray<kvm_cpuid_entry2> for kvm_cpuid2
impl FlexibleArray<kvm_cpuid_entry2> for kvm_cpuid2
source§fn set_len(&mut self, len: usize)
fn set_len(&mut self, len: usize)
Implementations must set flexible array length in the flexible array struct to the value
specified by
len
. Appropriate conversions (i.e, usize to u32) are allowed so long as
they don’t overflow or underflow.source§fn get_len(&self) -> usize
fn get_len(&self) -> usize
Implementations must return the length of the flexible array member. Appropriate
conversions (i.e, usize to u32) are allowed so long as they don’t overflow or underflow.
source§unsafe fn get_slice(&self, len: usize) -> &[kvm_cpuid_entry2]
unsafe fn get_slice(&self, len: usize) -> &[kvm_cpuid_entry2]
Implementations must return a slice of flexible array member of length
len
. Read moresource§unsafe fn get_mut_slice(&mut self, len: usize) -> &mut [kvm_cpuid_entry2]
unsafe fn get_mut_slice(&mut self, len: usize) -> &mut [kvm_cpuid_entry2]
Implementations must return a mutable slice of flexible array member of length
len
. Read moreimpl Copy for kvm_cpuid_entry2
Auto Trait Implementations§
impl RefUnwindSafe for kvm_cpuid_entry2
impl Send for kvm_cpuid_entry2
impl Sync for kvm_cpuid_entry2
impl Unpin for kvm_cpuid_entry2
impl UnwindSafe for kvm_cpuid_entry2
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