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>
Available on crate feature software-crypto only.
impl<R, G, CS, KV> Platform for EmbassyPlatform<R, G, CS, KV>
Available on crate feature
software-crypto only.Source§type Identity = SoftwareIdentity
type Identity = SoftwareIdentity
Local identity implementation.
Source§type Aes = SoftwareAes
type Aes = SoftwareAes
AES provider implementation.
Source§type Sha = SoftwareSha256
type Sha = SoftwareSha256
SHA/HMAC provider implementation.
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