Enum bern_conf_type::MemoryType
source · [−]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 RefUnwindSafe for MemoryType
impl Send for MemoryType
impl Sync for MemoryType
impl Unpin for MemoryType
impl UnwindSafe for MemoryType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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