pub struct DeviceNodePlatform<CS>(/* private fields */);Expand description
umsh_mac::Platform bundle for the device node, generic only over the
board’s counter store — the one piece of the platform that is
genuinely per-board, because it is backed by that board’s flash.
Trait Implementations§
Source§impl<CS: CounterStore + 'static> Platform for DeviceNodePlatform<CS>
impl<CS: CounterStore + 'static> Platform for DeviceNodePlatform<CS>
Source§type Radio = DutyGatedRadio<LoraphyRadio<CriticalSectionRawMutex, 4, 2>, EmbassyClock>
type Radio = DutyGatedRadio<LoraphyRadio<CriticalSectionRawMutex, 4, 2>, EmbassyClock>
Radio implementation.
Source§type CounterStore = CS
type CounterStore = CS
Persistent frame-counter store implementation.
Source§type KeyValueStore = NoKeyValueStore
type KeyValueStore = NoKeyValueStore
General-purpose persistent key-value store implementation.
Auto Trait Implementations§
impl<CS> Freeze for DeviceNodePlatform<CS>
impl<CS> RefUnwindSafe for DeviceNodePlatform<CS>where
CS: RefUnwindSafe,
impl<CS> Send for DeviceNodePlatform<CS>where
CS: Send,
impl<CS> Sync for DeviceNodePlatform<CS>where
CS: Sync,
impl<CS> Unpin for DeviceNodePlatform<CS>where
CS: Unpin,
impl<CS> UnwindSafe for DeviceNodePlatform<CS>where
CS: UnwindSafe,
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more