Expand description
This module provides all the primitives needed to build a multithreaded application.
Modules§
- io
- Traits, helpers, and type definitions for asynchronous I/O functionality.
Structs§
- Async
Mutex - An asynchronous
Mutex-like type. - Async
Mutex Guard - A handle to a held
Mutex. The guard can be held across any.awaitpoint as it isSend. - Async
RwLock - An asynchronous reader-writer lock.
- RwLock
Read Guard - RAII structure used to release the shared read access of a lock when dropped.
- RwLock
Write Guard - RAII structure used to release the exclusive write access of a lock when dropped.
Statics§
Traits§
- Async
Read Ext - Reads bytes from a source.
- Async
Write Ext - Writes bytes to a sink.