Blog Posts

Recent posts

Rust - All About Pin

less than 1 minute read

Excellent explanation about pin API in Rust. 3 hours long video but it’s worth to watch all to understand how async and await are working in Rust with Future...

Rust - Idiomatic Rust API design

less than 1 minute read

Rust is great programming language because of default move semantic and trait system. Idiomatic Rust API is fully utilizing these concept to make it easy to ...

Rust - AsRef usage

less than 1 minute read

AsRef is useful for generic function on accepting specific reference such as str or Path as trait bounds.