Trait Async

Source
pub trait Async:
    MaybeSend
    + MaybeSync
    + MaybeStatic { }
Expand description

This is defined as a convenient constraint alias to Send + Sync + 'static.

Implementors§

Source§

impl<A> Async for A