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