pub struct Memory {
pub start: usize,
pub size: usize,
pub page_size: usize,
pub block_size: usize,
pub mode: usize,
pub delay: usize,
/* private fields */
}Expand description
Memory segment e.g. EEPROM, flash.
Fields§
§start: usize§size: usize§page_size: usize§block_size: usize§mode: usize§delay: usizeAuto Trait Implementations§
impl Freeze for Memory
impl RefUnwindSafe for Memory
impl Send for Memory
impl Sync for Memory
impl Unpin for Memory
impl UnsafeUnpin for Memory
impl UnwindSafe for Memory
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