#[repr(u8)]
pub enum ARCH_A {
Show 38 variants AT91SAM9XX, AT91SAM9XEXX, AT91X34, CAP7, CAP9, CAP11, AT91X40, AT91X42, AT91SAM4SH2, AT91X55, AT91SAM7AXX, AT91SAM7AQXX, AT91X63, SAM4CXX_C, SAM4CXX_E, AT91SAM7SXX, AT91SAM7XCXX, AT91SAM7SEXX, AT91SAM7LXX, AT91SAM7XXX, AT91SAM7SLXX, SAM3UX_C, SAM3UX_E, SAM3AX_C, SAM3XX_C, SAM3XX_E, SAM3XX_G, AT91X92, SAM4NX_A, SAM4NX_B, SAM4NX_C, SAM3SDX_B, SAM3SDX_C, SAM5A, SAM4LX_A, SAM4LX_B, SAM4LX_C, AT75CXX,
}
Expand description

Architecture Identifier

Variants§

§

AT91SAM9XX

25: AT91SAM9xx Series

§

AT91SAM9XEXX

41: AT91SAM9XExx Series

§

AT91X34

52: AT91x34 Series

§

CAP7

55: CAP7 Series

§

CAP9

57: CAP9 Series

§

CAP11

59: CAP11 Series

§

AT91X40

64: AT91x40 Series

§

AT91X42

66: AT91x42 Series

§

AT91SAM4SH2

69: AT91SAM4SH2 Series

§

AT91X55

85: AT91x55 Series

§

AT91SAM7AXX

96: AT91SAM7Axx Series

§

AT91SAM7AQXX

97: AT91SAM7AQxx Series

§

AT91X63

99: AT91x63 Series

§

SAM4CXX_C

100: SAM4CxC Series (100-pin version)

§

SAM4CXX_E

102: SAM4CxE Series (144-pin version)

§

AT91SAM7SXX

112: AT91SAM7Sxx Series

§

AT91SAM7XCXX

113: AT91SAM7XCxx Series

§

AT91SAM7SEXX

114: AT91SAM7SExx Series

§

AT91SAM7LXX

115: AT91SAM7Lxx Series

§

AT91SAM7XXX

117: AT91SAM7Xxx Series

§

AT91SAM7SLXX

118: AT91SAM7SLxx Series

§

SAM3UX_C

128: SAM3UxC Series (100-pin version)

§

SAM3UX_E

129: SAM3UxE Series (144-pin version)

§

SAM3AX_C

131: SAM3AxC Series (100-pin version)

§

SAM3XX_C

132: SAM3XxC Series (100-pin version)

§

SAM3XX_E

133: SAM3XxE Series (144-pin version)

§

SAM3XX_G

134: SAM3XxG Series (208/217-pin version)

§

AT91X92

146: AT91x92 Series

§

SAM4NX_A

147: SAM4NxA Series (48-pin version)

§

SAM4NX_B

148: SAM4NxB Series (64-pin version)

§

SAM4NX_C

149: SAM4NxC Series (100-pin version)

§

SAM3SDX_B

153: SAM3SDxB Series (64-pin version)

§

SAM3SDX_C

154: SAM3SDxC Series (100-pin version)

§

SAM5A

165: SAM5A

§

SAM4LX_A

176: SAM4LxA Series (48-pin version)

§

SAM4LX_B

177: SAM4LxB Series (64-pin version)

§

SAM4LX_C

178: SAM4LxC Series (100-pin version)

§

AT75CXX

240: AT75Cxx Series

Trait Implementations§

source§

impl Clone for ARCH_A

source§

fn clone(&self) -> ARCH_A

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for ARCH_A

source§

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

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

impl From<ARCH_A> for u8

source§

fn from(variant: ARCH_A) -> Self

Converts to this type from the input type.
source§

impl PartialEq<ARCH_A> for ARCH_A

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for ARCH_A

source§

impl Eq for ARCH_A

source§

impl StructuralEq for ARCH_A

source§

impl StructuralPartialEq for ARCH_A

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.