Crate est

Source
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:

Re-exports§

pub use result::AnyRes;result
pub use tokio;tokio

Modules§

collectionscollections
Extensions to the std::collections module.
futurefuture
Extensions to the std::future module.
processprocess
Extensions to the std::process & tokio::process module.
resultresult
Extensions to the std::result module.
sliceslice
Extensions to the std::slice module.
syncsync
Extensions to the std::sync & tokio::sync module.
tasktask
Extensions to the std::task & tokio::task module.
threadthread
Extensions to the std::thread module.