pub struct TokioPlatform<R, CS = TokioFileCounterStore, KV = TokioFileKeyValueStore>(/* private fields */);Expand description
Convenience crate::Platform implementation for Tokio-based hosts.
Trait Implementations§
Source§impl<R, CS, KV> Platform for TokioPlatform<R, CS, KV>where
R: Radio,
CS: CounterStore,
KV: KeyValueStore,
Available on crate feature software-crypto only.
impl<R, CS, KV> Platform for TokioPlatform<R, CS, KV>where
R: Radio,
CS: CounterStore,
KV: KeyValueStore,
Available on crate feature
software-crypto only.Source§type Delay = TokioDelay
type Delay = TokioDelay
Async delay 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, CS, KV> Freeze for TokioPlatform<R, CS, KV>
impl<R, CS, KV> RefUnwindSafe for TokioPlatform<R, CS, KV>
impl<R, CS, KV> Send for TokioPlatform<R, CS, KV>
impl<R, CS, KV> Sync for TokioPlatform<R, CS, KV>
impl<R, CS, KV> Unpin for TokioPlatform<R, CS, KV>
impl<R, CS, KV> UnwindSafe for TokioPlatform<R, 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