Re-exports§
pub use traits::Async;
Modules§
Traits§
- Maybe
Send - Types that can be transferred across thread boundaries.
- Maybe
Sync - Types for which it is safe to share references between threads.
Attribute Macros§
- async_
trait - The
#[async_trait]
macro is used to desugar async functions in traits to returnimpl Future + Send
.