Module coroutines

Source
Expand description

Collection of I/O-free, resumable and composable stream state machines.

Coroutines emit I/O requests that need to be processed by runtimes in order to continue their progression.

Modulesยง

read
I/O-free coroutine to read bytes into a buffer.
read_exact
I/O-free coroutine to read bytes into a buffer until it reaches a given amount of bytes.
read_to_end
I/O-free coroutine to read bytes into a buffer until it reaches EOF.
write
I/O-free coroutine to write bytes into a stream.