Type Definition iced_futures::BoxFuture[][src]

type BoxFuture<T> = BoxFuture<'static, T>;

A boxed static future.

  • On native platforms, it needs a Send requirement.
  • On the Web platform, it does not need a Send requirement.