pub struct EmbassyPlatform<R, G, CS, KV>(/* private fields */);Expand description
Convenience crate::Platform implementation for Embassy-style targets.
Trait Implementations§
Source§impl<R, G, CS, KV> Platform for EmbassyPlatform<R, G, CS, KV>where
R: Radio,
G: CryptoRng,
CS: CounterStore,
KV: KeyValueStore,
Available on crate feature software-crypto only.
impl<R, G, CS, KV> Platform for EmbassyPlatform<R, G, CS, KV>where
R: Radio,
G: CryptoRng,
CS: CounterStore,
KV: KeyValueStore,
Available on crate feature
software-crypto only.Source§type Delay = EmbassyDelay
type Delay = EmbassyDelay
Async delay implementation.
Source§type Clock = EmbassyClock
type Clock = EmbassyClock
Monotonic clock implementation.
Source§type CounterStore = CS
type CounterStore = CS
Persistent frame-counter store implementation.
Source§type KeyValueStore = KV
type KeyValueStore = KV
General-purpose persistent key-value store implementation.
Auto Trait Implementations§
impl<R, G, CS, KV> Freeze for EmbassyPlatform<R, G, CS, KV>
impl<R, G, CS, KV> RefUnwindSafe for EmbassyPlatform<R, G, CS, KV>
impl<R, G, CS, KV> Send for EmbassyPlatform<R, G, CS, KV>
impl<R, G, CS, KV> Sync for EmbassyPlatform<R, G, CS, KV>
impl<R, G, CS, KV> Unpin for EmbassyPlatform<R, G, CS, KV>
impl<R, G, CS, KV> UnwindSafe for EmbassyPlatform<R, G, CS, KV>
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