Expand description
§The Cobalt Async wrapper library
This library provides a collection of helpful functions for working with async Rust.
§About harrison.ai
This crate is maintained by the Data Engineering team at harrison.ai.
At harrison.ai our mission is to create AI-as-a-medical-device solutions through ventures and ultimately improve the standard of healthcare for 1 million lives every day.
Modules§
- checksum
checksum
- Module for checksum calculation.
- counter
- Module holding utilities related to counts of bytes passed to AsyncWrite.
Enums§
- Chunk
Result - The return value of chunker functions used with
apply_chunker
.
Functions§
- apply_
chunker - Converts a
Stream
of typeT
to aStream
of typeChunk
by applying the functionchunker
to each item in the stream in turn. - try_
apply_ chunker - Converts a
TryStream
of typeT
to aTryStream
of typeChunk
by applying the functionchunker
to each item in the stream in turn. - try_
finally - An approximation of a “try/finally” block for async Result-returning code.