#[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

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for kvm_cpuid2

source§

fn default() -> kvm_cpuid2

Returns the “default value” for a type. Read more
source§

impl FlexibleArray<kvm_cpuid_entry2> for kvm_cpuid2

source§

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

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]

Implementations must return a slice of flexible array member of length len. Read more
source§

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 more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.