pub enum Error {
BrandString(Error),
CpuNotSupported,
FamError(Error),
InternalError(Error),
VcpuCountOverflow,
}
Expand description
Errors associated with processing the CPUID leaves.
Variants§
BrandString(Error)
Failed to parse CPU brand string
CpuNotSupported
The CPU architecture is not supported
FamError(Error)
A FamStructWrapper operation has failed
InternalError(Error)
A call to an internal helper method failed
VcpuCountOverflow
The maximum number of addressable logical CPUs cannot be stored in an u8
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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