Rust Learning Note: Pin and UnPin
Dec 31, 2023 · 5 min read · This article is a summary of Chapter 4.11.3 of Rust Course (course.rs/) and blog (folyd.com/blog/rust-pin-unpin/) The Use of Pin Pin is a smart pointer that encapsulates another pointer. It is represented as Pin<P<T>>, in which P is a pointer pointin...
Join discussion

