Struct kvm_sys::x86::bindings::kvm_cpuid2
source · #[repr(C)]pub struct kvm_cpuid2 {
pub nent: u32,
pub padding: u32,
pub entries: __IncompleteArrayField<kvm_cpuid_entry2>,
}
Fields§
§nent: u32
§padding: u32
§entries: __IncompleteArrayField<kvm_cpuid_entry2>
Trait Implementations§
source§impl Debug for kvm_cpuid2
impl Debug for kvm_cpuid2
source§impl Default for kvm_cpuid2
impl Default for kvm_cpuid2
source§fn default() -> kvm_cpuid2
fn default() -> kvm_cpuid2
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 moreAuto Trait Implementations§
impl RefUnwindSafe for kvm_cpuid2
impl Send for kvm_cpuid2
impl Sync for kvm_cpuid2
impl Unpin for kvm_cpuid2
impl UnwindSafe for kvm_cpuid2
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