pub struct DummyEepromImpl<const SIZE: usize> { /* private fields */ }
Trait Implementations§
source§impl<'e, const SIZE: usize> EepromSpace<'e> for DummyEepromImpl<SIZE>
impl<'e, const SIZE: usize> EepromSpace<'e> for DummyEepromImpl<SIZE>
const SIZE: usize = SIZE
type W = Stderr
type R = Stdin
source§fn read_at_into(&self, offset: usize, dest: &mut [u8]) -> usize
fn read_at_into(&self, offset: usize, dest: &mut [u8]) -> usize
Read from the EEPROM space, from the given offset, into the buffer
provided. The entire buffer will be filled (up to a maximum of
Self::SIZE bytes.) Read more
source§fn write_at_from(&mut self, offset: usize, src: &[u8]) -> usize
fn write_at_from(&mut self, offset: usize, src: &[u8]) -> usize
Write into the EEPROM space from the given buffer. The entire buffer
will be written starting at the given offset address. Read more
Auto Trait Implementations§
impl<const SIZE: usize> Freeze for DummyEepromImpl<SIZE>
impl<const SIZE: usize> RefUnwindSafe for DummyEepromImpl<SIZE>
impl<const SIZE: usize> Send for DummyEepromImpl<SIZE>
impl<const SIZE: usize> Sync for DummyEepromImpl<SIZE>
impl<const SIZE: usize> Unpin for DummyEepromImpl<SIZE>
impl<const SIZE: usize> UnwindSafe for DummyEepromImpl<SIZE>
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