Enum ArmCpuModel

Source
#[repr(i32)]
pub enum ArmCpuModel {
Show 33 variants UC_CPU_ARM_926 = 0, UC_CPU_ARM_946 = 1, UC_CPU_ARM_1026 = 2, UC_CPU_ARM_1136_R2 = 3, UC_CPU_ARM_1136 = 4, UC_CPU_ARM_1176 = 5, UC_CPU_ARM_11MPCORE = 6, UC_CPU_ARM_CORTEX_M0 = 7, UC_CPU_ARM_CORTEX_M3 = 8, UC_CPU_ARM_CORTEX_M4 = 9, UC_CPU_ARM_CORTEX_M7 = 10, UC_CPU_ARM_CORTEX_M33 = 11, UC_CPU_ARM_CORTEX_R5 = 12, UC_CPU_ARM_CORTEX_R5F = 13, UC_CPU_ARM_CORTEX_A7 = 14, UC_CPU_ARM_CORTEX_A8 = 15, UC_CPU_ARM_CORTEX_A9 = 16, UC_CPU_ARM_CORTEX_A15 = 17, UC_CPU_ARM_TI925T = 18, UC_CPU_ARM_SA1100 = 19, UC_CPU_ARM_SA1110 = 20, UC_CPU_ARM_PXA250 = 21, UC_CPU_ARM_PXA255 = 22, UC_CPU_ARM_PXA260 = 23, UC_CPU_ARM_PXA261 = 24, UC_CPU_ARM_PXA262 = 25, UC_CPU_ARM_PXA270 = 26, UC_CPU_ARM_PXA270A0 = 27, UC_CPU_ARM_PXA270A1 = 28, UC_CPU_ARM_PXA270B0 = 29, UC_CPU_ARM_PXA270B1 = 30, UC_CPU_ARM_PXA270C0 = 31, UC_CPU_ARM_PXA270C5 = 32,
}

Variants§

§

UC_CPU_ARM_926 = 0

§

UC_CPU_ARM_946 = 1

§

UC_CPU_ARM_1026 = 2

§

UC_CPU_ARM_1136_R2 = 3

§

UC_CPU_ARM_1136 = 4

§

UC_CPU_ARM_1176 = 5

§

UC_CPU_ARM_11MPCORE = 6

§

UC_CPU_ARM_CORTEX_M0 = 7

§

UC_CPU_ARM_CORTEX_M3 = 8

§

UC_CPU_ARM_CORTEX_M4 = 9

§

UC_CPU_ARM_CORTEX_M7 = 10

§

UC_CPU_ARM_CORTEX_M33 = 11

§

UC_CPU_ARM_CORTEX_R5 = 12

§

UC_CPU_ARM_CORTEX_R5F = 13

§

UC_CPU_ARM_CORTEX_A7 = 14

§

UC_CPU_ARM_CORTEX_A8 = 15

§

UC_CPU_ARM_CORTEX_A9 = 16

§

UC_CPU_ARM_CORTEX_A15 = 17

§

UC_CPU_ARM_TI925T = 18

§

UC_CPU_ARM_SA1100 = 19

§

UC_CPU_ARM_SA1110 = 20

§

UC_CPU_ARM_PXA250 = 21

§

UC_CPU_ARM_PXA255 = 22

§

UC_CPU_ARM_PXA260 = 23

§

UC_CPU_ARM_PXA261 = 24

§

UC_CPU_ARM_PXA262 = 25

§

UC_CPU_ARM_PXA270 = 26

§

UC_CPU_ARM_PXA270A0 = 27

§

UC_CPU_ARM_PXA270A1 = 28

§

UC_CPU_ARM_PXA270B0 = 29

§

UC_CPU_ARM_PXA270B1 = 30

§

UC_CPU_ARM_PXA270C0 = 31

§

UC_CPU_ARM_PXA270C5 = 32

Trait Implementations§

Source§

impl Clone for ArmCpuModel

Source§

fn clone(&self) -> ArmCpuModel

Returns a duplicate of the value. Read more
1.0.0 · Source§

const fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ArmCpuModel

Source§

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

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

impl From<&ArmCpuModel> for i32

Source§

fn from(value: &ArmCpuModel) -> Self

Converts to this type from the input type.
Source§

impl From<ArmCpuModel> for i32

Source§

fn from(value: ArmCpuModel) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for ArmCpuModel

Source§

fn eq(&self, other: &ArmCpuModel) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

const fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for ArmCpuModel

Source§

impl Eq for ArmCpuModel

Source§

impl StructuralPartialEq for ArmCpuModel

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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 T
where 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

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 T
where U: TryFrom<T>,

Source§

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.