pub struct FirmwareUpdaterConfig<DFU, STATE> {
    pub dfu: DFU,
    pub state: STATE,
}
Expand description

Firmware updater flash configuration holding the two flashes used by the updater

If only a single flash is actually used, then that flash should be partitioned into two partitions before use. The easiest way to do this is to use [FirmwareUpdaterConfig::from_linkerfile] or [FirmwareUpdaterConfig::from_linkerfile_blocking] which will partition the provided flash according to symbols defined in the linkerfile.

Fields§

§dfu: DFU

The dfu flash partition

§state: STATE

The state flash partition

Auto Trait Implementations§

§

impl<DFU, STATE> RefUnwindSafe for FirmwareUpdaterConfig<DFU, STATE>
where DFU: RefUnwindSafe, STATE: RefUnwindSafe,

§

impl<DFU, STATE> Send for FirmwareUpdaterConfig<DFU, STATE>
where DFU: Send, STATE: Send,

§

impl<DFU, STATE> Sync for FirmwareUpdaterConfig<DFU, STATE>
where DFU: Sync, STATE: Sync,

§

impl<DFU, STATE> Unpin for FirmwareUpdaterConfig<DFU, STATE>
where DFU: Unpin, STATE: Unpin,

§

impl<DFU, STATE> UnwindSafe for FirmwareUpdaterConfig<DFU, STATE>
where DFU: UnwindSafe, STATE: 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> Same for T

§

type Output = T

Should always be Self
source§

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

§

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>,

§

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.