pub enum MemoryType {
Rom,
Eeprom,
Flash,
Ram,
Peripheral,
}Expand description
Type of Memory.
Variants§
Rom
Read-only memory.
Eeprom
EERPOM.
Bytes can be set/cleared individually.
Flash
Flash memory.
Clearing memory requires clearing whole pages.
Ram
RAM for non-volatile data storage.
Peripheral
Memory mapped peripheral.
Auto Trait Implementations§
impl Freeze for MemoryType
impl RefUnwindSafe for MemoryType
impl Send for MemoryType
impl Sync for MemoryType
impl Unpin for MemoryType
impl UnwindSafe for MemoryType
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