Struct NorStorage

Source
pub struct NorStorage<B: BufferBackend, const READ_SIZE: usize, const WRITE_SIZE: usize, const ERASE_SIZE: usize> { /* private fields */ }
Expand description

Structure representing a NOR storage with a buffer backend.

Implementations§

Source§

impl<B: BufferBackend, const READ_SIZE: usize, const WRITE_SIZE: usize, const ERASE_SIZE: usize> NorStorage<B, READ_SIZE, WRITE_SIZE, ERASE_SIZE>

Source

pub fn nor_flash(self) -> NorMemory<B, READ_SIZE, WRITE_SIZE, ERASE_SIZE>

Converts the NOR storage back into a NOR memory.

Trait Implementations§

Source§

impl<B: BufferBackend, const READ_SIZE: usize, const WRITE_SIZE: usize, const ERASE_SIZE: usize> ReadStorage for NorStorage<B, READ_SIZE, WRITE_SIZE, ERASE_SIZE>

Source§

fn read(&mut self, address: u32, buf: &mut [u8]) -> Result<(), Error>

Reads data from the NOR storage into the provided buffer.

Source§

fn capacity(&self) -> usize

Returns the capacity of the NOR storage.

Source§

type Error = NorFlashErrorKind

An enumeration of storage errors
Source§

impl<B: BufferBackend, const READ_SIZE: usize, const WRITE_SIZE: usize, const ERASE_SIZE: usize> Storage for NorStorage<B, READ_SIZE, WRITE_SIZE, ERASE_SIZE>

Source§

fn write(&mut self, address: u32, buf: &[u8]) -> Result<(), Error>

Writes data to the NOR storage at the specified address.

Auto Trait Implementations§

§

impl<B, const READ_SIZE: usize, const WRITE_SIZE: usize, const ERASE_SIZE: usize> Freeze for NorStorage<B, READ_SIZE, WRITE_SIZE, ERASE_SIZE>
where B: Freeze,

§

impl<B, const READ_SIZE: usize, const WRITE_SIZE: usize, const ERASE_SIZE: usize> RefUnwindSafe for NorStorage<B, READ_SIZE, WRITE_SIZE, ERASE_SIZE>
where B: RefUnwindSafe,

§

impl<B, const READ_SIZE: usize, const WRITE_SIZE: usize, const ERASE_SIZE: usize> Send for NorStorage<B, READ_SIZE, WRITE_SIZE, ERASE_SIZE>
where B: Send,

§

impl<B, const READ_SIZE: usize, const WRITE_SIZE: usize, const ERASE_SIZE: usize> Sync for NorStorage<B, READ_SIZE, WRITE_SIZE, ERASE_SIZE>
where B: Sync,

§

impl<B, const READ_SIZE: usize, const WRITE_SIZE: usize, const ERASE_SIZE: usize> Unpin for NorStorage<B, READ_SIZE, WRITE_SIZE, ERASE_SIZE>
where B: Unpin,

§

impl<B, const READ_SIZE: usize, const WRITE_SIZE: usize, const ERASE_SIZE: usize> UnwindSafe for NorStorage<B, READ_SIZE, WRITE_SIZE, ERASE_SIZE>
where B: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.