#[repr(u8)]
pub enum PROCESSOR_A {
CM0P,
CM23,
CM3,
CM4,
CM4F,
CM33,
}
Expand description
Processor
Value on reset: 6
Variants
CM0P
1: Cortex-M0+
CM23
2: Cortex-M23
CM3
3: Cortex-M3
CM4
5: Cortex-M4
CM4F
6: Cortex-M4 with FPU
CM33
7: Cortex-M33
Trait Implementations
sourceimpl Clone for PROCESSOR_A
impl Clone for PROCESSOR_A
sourcefn clone(&self) -> PROCESSOR_A
fn clone(&self) -> PROCESSOR_A
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for PROCESSOR_A
impl Debug for PROCESSOR_A
sourceimpl From<PROCESSOR_A> for u8
impl From<PROCESSOR_A> for u8
sourcefn from(variant: PROCESSOR_A) -> Self
fn from(variant: PROCESSOR_A) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<PROCESSOR_A> for PROCESSOR_A
impl PartialEq<PROCESSOR_A> for PROCESSOR_A
sourcefn eq(&self, other: &PROCESSOR_A) -> bool
fn eq(&self, other: &PROCESSOR_A) -> bool
impl Copy for PROCESSOR_A
impl StructuralPartialEq for PROCESSOR_A
Auto Trait Implementations
impl RefUnwindSafe for PROCESSOR_A
impl Send for PROCESSOR_A
impl Sync for PROCESSOR_A
impl Unpin for PROCESSOR_A
impl UnwindSafe for PROCESSOR_A
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more