atsamd_hal::nvm::smart_eeprom

Struct SmartEeprom

Source
pub struct SmartEeprom<'a, T: SmartEepromState> { /* private fields */ }
Expand description

Struct representing a SmartEEPROM instance.

It is generic over:

Implementations§

Source§

impl<'a, T: SmartEepromState> SmartEeprom<'a, T>

Source

pub unsafe fn get_slice<TP: SmartEepromPointableSize>(&self) -> &[TP]

Returns an immutable slice to SmartEEPROM mapped address space.

Underlying pointed type can be either u8, u16 or u32.

§Safety

Nvmctrl.SEESTAT.BUSY register must be 0 before memory access can be performed.

Source

pub fn get<TP: SmartEepromPointableSize>( &self, offset: usize, buffer: &mut [TP], )

Retrieves data stored in SmartEEPROM at offset location and copies it to buffer.

Note: offset_in_bytes == sizeof::<TP>() * offset

Source

pub fn iter<TP: SmartEepromPointableSize>(&'a self) -> SmartEepromIter<'a, TP>

Returns an iterator over SmartEEPROM address space.

Source§

impl<'a> SmartEeprom<'a, Unlocked>

Source

pub unsafe fn get_mut_slice<TP: SmartEepromPointableSize>( &mut self, ) -> &mut [TP]

Returns a mutable slice to SmartEEPROM mapped address space.

Underlying pointed type can be either u8, u16 or u32.

§Safety

Nvmctrl.SEESTAT.BUSY register must be 0 before memory access can be performed.

Source

pub fn set<TP: SmartEepromPointableSize>( &mut self, offset: usize, buffer: &[TP], )

Copies data in a buffer to SmartEEPROM at offset location

Note: offset_in_bytes == sizeof::<TP>() * offset

Source

pub fn iter_mut<TP: SmartEepromPointableSize>( &'a mut self, ) -> SmartEepromIterMut<'a, TP>

Returns a mutable iterator over SmartEEPROM address space.

Source

pub fn lock(self) -> SmartEeprom<'a, Locked>

Locks SmartEEPROM, allowing only to perform read operations

Source§

impl<'a> SmartEeprom<'a, Locked>

Source

pub fn unlock(self) -> SmartEeprom<'a, Unlocked>

Unlocks SmartEEPROM, allowing to perform both read and write operations

Auto Trait Implementations§

§

impl<'a, T> Freeze for SmartEeprom<'a, T>

§

impl<'a, T> RefUnwindSafe for SmartEeprom<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> Send for SmartEeprom<'a, T>
where T: Send,

§

impl<'a, T> !Sync for SmartEeprom<'a, T>

§

impl<'a, T> Unpin for SmartEeprom<'a, T>
where T: Unpin,

§

impl<'a, T> !UnwindSafe for SmartEeprom<'a, T>

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> Same for T

Source§

type Output = T

Should always be Self
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.