Understanding Pin<T> in Rust
Dec 23, 2025 · 3 min read · 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...
Join discussion