Hi there 馃憢
I’m Samuel, a software engineer and this is my little corner of the internet. I write about software development, technology, and other things that interest me.
Rust鈥檚 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).
Rust concurrency, OS Threads, Channels and Mutexes
Rust testing, unit, documentation and integration tests
Rust error handling through the try-operator [?] and how it works
Rust most important traits Drop, Iterator, IntoIterator. Also we鈥檒l cover Closures and how they work in Rust
Generics and traits in Rust
Rust STD library, modules and how to use them
In this post we鈥檒l cover control flows in Rust such as if, while, for and match