Type Alias iced_futures::BoxFuture

source ·
pub type BoxFuture<T> = BoxFuture<'static, T>;
Available on non-WebAssembly only.
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> { /* private fields */ }

Trait Implementations§

1.33.0 · source§

impl<P> Deref for Pin<P>where P: Deref,

§

type Target = <P as Deref>::Target

The resulting type after dereferencing.
source§

fn deref(&self) -> &<P as Deref>::Target

Dereferences the value.