Trait Async

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

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

Implementors§

Source§

impl<A> Async for A
where A: MaybeSend + MaybeSync,