Struct avr_mcu::Module
[−]
[src]
pub struct Module {
pub name: String,
pub register_groups: Vec<RegisterGroup>,
pub value_groups: Vec<ValueGroup>,
}Fields
name: String
The name of the module, for example, PORT.
register_groups: Vec<RegisterGroup>
Registers associated with the module.
value_groups: Vec<ValueGroup>
Value groups associated with the module.
Methods
impl Module[src]
fn register_group(&self, name: &str) -> Option<&RegisterGroup>[src]
Gets a register group by name.
fn registers<'a>(&'a self) -> impl Iterator<Item = &'a Register>[src]
Gets an iterator over all registers in the module.
Trait Implementations
impl Clone for Module[src]
fn clone(&self) -> Module[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 Module[src]
impl PartialOrd for Module[src]
fn partial_cmp(&self, __arg_0: &Module) -> Option<Ordering>[src]
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, __arg_0: &Module) -> bool[src]
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, __arg_0: &Module) -> bool[src]
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, __arg_0: &Module) -> bool[src]
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, __arg_0: &Module) -> bool[src]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more