Type Alias iced_futures::BoxFuture
source · pub type BoxFuture<T> = BoxFuture<'static, T>;
Expand description
A boxed static future.
- On native platforms, it needs a
Send
requirement. - On the Web platform, it does not need a
Send
requirement.
Aliased Type§
struct BoxFuture<T> {}