#[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 Freeze for kvm_cpuid_entry2
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