Struct raw_cpuid::VendorInfo
source · #[repr(C)]pub struct VendorInfo { /* private fields */ }
Expand description
Vendor Info String (LEAF=0x0)
A string that can be for example “AuthenticAMD” or “GenuineIntel”.
Technical Background
The vendor info is a 12-byte (96 bit) long string stored in ebx
, edx
and
ecx
by the corresponding cpuid
instruction.
Platforms
✅ AMD ✅ Intel
Implementations§
Trait Implementations§
source§impl Debug for VendorInfo
impl Debug for VendorInfo
source§impl Display for VendorInfo
impl Display for VendorInfo
source§impl PartialEq<VendorInfo> for VendorInfo
impl PartialEq<VendorInfo> for VendorInfo
source§fn eq(&self, other: &VendorInfo) -> bool
fn eq(&self, other: &VendorInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.