pub type ChannelStoreFuture<'a, T> = Pin<Box<dyn Future<Output = Result<T, ChannelStoreError>> + Send + 'a>>;Expand description
Type-erased future returned by DeRecChannelStore methods. See
SecretStoreFuture for the Send/non-Send rules.
Aliased Typeยง
pub struct ChannelStoreFuture<'a, T> { /* private fields */ }