Skip to main content

StateStoreFuture

Type Alias StateStoreFuture 

Source
pub type StateStoreFuture<'a, T> = Pin<Box<dyn Future<Output = Result<T, StateStoreError>> + Send + 'a>>;
Expand description

Type-erased future returned by DeRecStateStore methods. See SecretStoreFuture for the Send/non-Send rules.

Aliased Typeยง

pub struct StateStoreFuture<'a, T> { /* private fields */ }