Type Alias fedimint_core::util::BoxFuture

source ·
pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Expand description

Future that is Send unless targeting WASM

Aliased Type§

struct BoxFuture<'a, T> {}