Crate rusty_chain

Source

Modules§

framework
macros
queue

Macros§

chain
chain_link
duplicate
join
Polls multiple futures simultaneously, returning a tuple of all results once complete.
paste

Structs§

Builder
Builds Tokio Runtime with custom configuration values.
Mutex
An asynchronous Mutex-like type.
RwLock
An asynchronous reader-writer lock.

Traits§

Rng
An automatically-implemented extension trait on RngCore providing high-level generic methods for sampling values and other convenience methods.
SliceRandom
Extension trait on slices, providing random mutation and sampling methods.

Functions§

join_all
Creates a future which represents a collection of the outputs of the futures given.
thread_rng
Retrieve the lazily-initialized thread-local random number generator, seeded by the system. Intended to be used in method chaining style, e.g. thread_rng().gen::<i32>(), or cached locally, e.g. let mut rng = thread_rng();. Invoked by the Default trait, making ThreadRng::default() equivalent.

Attribute Macros§

async_trait