Comprehensive Rust | Final Day

Rust’s async story is based on future's. A future is polled to produce a value. If the value is not ready yet, poll returns Poll::Pending and the executor will schedule the task to be polled again in the future. If the value is ready, poll returns Poll::Ready(value).

October 24, 2023 · 6 min · 1137 words · @sagoez

Comprehensive Rust | Day 10

Rust concurrency, OS Threads, Channels and Mutexes

October 23, 2023 · 6 min · 1164 words · @sagoez