List Question
18 TechQA 2023-08-11T12:41:57.567000Actually pinning to the heap using alloc/dealloc in Rust?
57 views
Asked by Einliterflasche
Why doesn't my self-referential struct work (invalid memory reference)?
138 views
Asked by Einliterflasche
Why does a pinned future implement Unpin?
345 views
Asked by BugMaker
Why is Pin::map_unchecked unsafe?
143 views
Asked by bilosikia
Why does inner variable borrow outer variable for longer than the inner variable is in scope?
52 views
Asked by minseong
Different Target for Deref and DerefMut
295 views
Asked by hunter-jones
Pinned reference to FFI object consumed by calling methods that receive it
724 views
Asked by harmic
Why Pin::new_unchecked(&self) worked but not Pin::new_unchecked(&self).as_ref()?
89 views
Asked by JiaHao Xu
How do I pin project an element of a vector?
1.1k views
Asked by user855
Should I use Pin when making C++ call a Rust method through a pointer?
1.3k views
Asked by Guerlando OCs
How is `pin_project` sound without `Unpin`
504 views
Asked by Lucretiel
Why does Pin prevent mem::swap? Does swapping change the memory location of objects?
539 views
Asked by fairjm
How to manually implement a pinned, self-referential struct?
766 views
Asked by Lucretiel
How to get Pin<&mut T> out of Pin<Arc<Mutex<T>>>
1k views
Asked by Kornel
How do I call a method that requires a pinned self from another method that has a pinned self?
740 views
Asked by WillW
What are the use cases of the newly proposed Pin type?
2.9k views
Asked by 00imvj00
How to use the Pin struct with self-referential structures?
7.2k views
Asked by Sébastien Chapuis