Trait Async

Source
pub trait Async: Send + Sync { }
Expand description

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

Implementors§

Source§

impl<A> Async for A
where A: Send + Sync,