Enum avr_mcu::Architecture
[−]
[src]
pub enum Architecture { Unknown, Avr0, Avr1, Avr2, Avr25, Avr3, Avr31, Avr35, Avr4, Avr5, Avr51, Avr6, Xmega2, Xmega3, Xmega4, Xmega5, Xmega6, Xmega7, Tiny, }
An AVR architecture (mcu family) name.
Architecture is a misnomer - 'mcu family' would make sense. Cores with the same instruction sets share an architecture name.
Variants
Unknown
Avr0
Avr1
Avr2
Avr25
Avr3
Avr31
Avr35
Avr4
Avr5
Avr51
Avr6
Xmega2
Xmega3
Xmega4
Xmega5
Xmega6
Xmega7
Tiny
Methods
impl Architecture
[src]
Trait Implementations
impl Copy for Architecture
[src]
impl Clone for Architecture
[src]
fn clone(&self) -> Architecture
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for Architecture
[src]
impl PartialEq for Architecture
[src]
fn eq(&self, __arg_0: &Architecture) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl Eq for Architecture
[src]
impl PartialOrd for Architecture
[src]
fn partial_cmp(&self, __arg_0: &Architecture) -> Option<Ordering>
[src]
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Ord for Architecture
[src]
fn cmp(&self, __arg_0: &Architecture) -> Ordering
[src]
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.22.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.22.0[src]
Compares and returns the minimum of two values. Read more