atsamd_hal::nvm::smart_eeprom

Enum SmartEepromRetrievalFailure

Source
pub enum SmartEepromRetrievalFailure {
    Disabled,
    DisabledAutomaticPageReallocationNotSupported,
    BufferedWritesNotSupported,
    InvalidBlockCount {
        sblk: u32,
    },
}
Expand description

Enum representing possible failure modes of SmartEEPROM while its state is being retrieved from HW registers.

Variants§

§

Disabled

SmartEEPROM is disabled and user page is misconfigured. More details in module-level documentation.

§

DisabledAutomaticPageReallocationNotSupported

Support for disabled automatic page reallocation is not implemented.

§

BufferedWritesNotSupported

Support for buffered writes to NVM is not implemented.

§

InvalidBlockCount

SBLK must be in range 1..=10. SBLK is represented by 4 bits in a user page which means that it can be between 0 and 15. Documentation does not cover cases for 11..=15, therefore API considers them unsupported.

Fields

§sblk: u32

Currently set, unsupported SBLK value.

Trait Implementations§

Source§

impl Debug for SmartEepromRetrievalFailure

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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.