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

Library generic future type.

Aliased Type§

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