#[repr(C)]pub struct avr_eeprom_t {
pub io: avr_io_t,
pub eeprom: *mut u8,
pub size: u16,
pub r_eearh: u8,
pub r_eearl: u8,
pub r_eedr: u8,
pub r_eecr: u8,
pub eepm: [avr_regbit_t; 4],
pub eempe: avr_regbit_t,
pub eepe: avr_regbit_t,
pub eere: avr_regbit_t,
pub ready: avr_int_vector_t,
}
Fields§
§io: avr_io_t
§eeprom: *mut u8
§size: u16
§r_eearh: u8
§r_eearl: u8
§r_eedr: u8
§r_eecr: u8
§eepm: [avr_regbit_t; 4]
§eempe: avr_regbit_t
§eepe: avr_regbit_t
§eere: avr_regbit_t
§ready: avr_int_vector_t
Trait Implementations§
Source§impl Clone for avr_eeprom_t
impl Clone for avr_eeprom_t
Source§fn clone(&self) -> avr_eeprom_t
fn clone(&self) -> avr_eeprom_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for avr_eeprom_t
impl Debug for avr_eeprom_t
impl Copy for avr_eeprom_t
Auto Trait Implementations§
impl Freeze for avr_eeprom_t
impl RefUnwindSafe for avr_eeprom_t
impl !Send for avr_eeprom_t
impl !Sync for avr_eeprom_t
impl Unpin for avr_eeprom_t
impl UnwindSafe for avr_eeprom_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more