Skip to main content

VirtualServerFuture

Type Alias VirtualServerFuture 

Source
pub type VirtualServerFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Expand description

A boxed future that conditionally implements Send based on the target architecture.

This only compiles on wasm, except for rust-analyzer and metadata generation, so this type exists to tryck the compiler

Aliased Typeยง

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