Understanding Pin<T> in Rust
While exploring the Apache DataFusion codebase, I came across this line:
Box::pin(opt.run()).await
I understood Box and .await, but Pin was still fuzzy for me. So I decided to dig deeper and write about it.
Here's what I learned.
First: What Does "M...
manlikehb.hashnode.dev3 min read