Expand description
Extensions for the rust Standard library and Tokio.
§Feature flags
The default feature will not enable anything (based on the principle of minimum
dependency). At the same time, each top-level module has a feature flag with the same name
(currently including: collections, future, process, result, slice, sync, task, thread).
There is also a feature flag called full that enables all features and introduces all
optional dependencies.
In addition, there are some optional feature flags as follows:
signal: Enablesctrl-csignal processing in thetask::gracefulmodule.task_tracker: Enables thetask::task_trackermodule.indexmap: Implementcollections::MapExtforindexmap::IndexMap.serde: Enablesserdesupport for the entire crate.
Re-exports§
Modules§
- collections
collections - Extensions to the
std::collectionsmodule. - future
future - Extensions to the
std::futuremodule. - process
process - Extensions to the
std::process&tokio::processmodule. - result
result - Extensions to the
std::resultmodule. - slice
slice - Extensions to the
std::slicemodule. - sync
sync - Extensions to the
std::sync&tokio::syncmodule. - task
task - Extensions to the
std::task&tokio::taskmodule. - thread
thread - Extensions to the
std::threadmodule.