[][src]Enum cortex_a::regs::MIDR_EL1::Implementer::Value

#[repr(u64)]pub enum Value {
    Reserved,
    Ampere,
    Arm,
    Broadcom,
    Cavium,
    DigitalEquipment,
    Fujitsu,
    Infineon,
    MotorolaOrFreescale,
    NVIDIA,
    AppliedMicroCircuits,
    Qualcomm,
    Marvell,
    Intel,
}

The Implementer code. This field must hold an implementer code that has been assigned by Arm. Assigned codes include the following:

Hex representation Implementer 0x00 Reserved for software use 0xC0 Ampere Computing 0x41 Arm Limited 0x42 Broadcom Corporation 0x43 Cavium Inc. 0x44 Digital Equipment Corporation 0x46 Fujitsu Ltd. 0x49 Infineon Technologies AG 0x4D Motorola or Freescale Semiconductor Inc. 0x4E NVIDIA Corporation 0x50 Applied Micro Circuits Corporation 0x51 Qualcomm Inc. 0x56 Marvell International Ltd. 0x69 Intel Corporation

Arm can assign codes that are not published in this manual. All values not assigned by Arm are reserved and must not be used.

Variants

Reserved
Ampere
Arm
Broadcom
Cavium
DigitalEquipment
Fujitsu
Infineon
MotorolaOrFreescale
NVIDIA
AppliedMicroCircuits
Qualcomm
Marvell
Intel

Trait Implementations

impl TryFromValue<u64> for Value[src]

type EnumType = Value

Auto Trait Implementations

impl Send for Value

impl Sync for Value

impl Unpin for Value

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.