2 stable releases

1.1.0 Nov 29, 2021
1.0.0 Aug 3, 2020

#126 in Memory management

Download history 11781/week @ 2024-08-11 12839/week @ 2024-08-18 12375/week @ 2024-08-25 14447/week @ 2024-09-01 12034/week @ 2024-09-08 13241/week @ 2024-09-15 14594/week @ 2024-09-22 15283/week @ 2024-09-29 14521/week @ 2024-10-06 13486/week @ 2024-10-13 15392/week @ 2024-10-20 13178/week @ 2024-10-27 16848/week @ 2024-11-03 5941/week @ 2024-11-10 5239/week @ 2024-11-17 5292/week @ 2024-11-24

34,009 downloads per month
Used in 55 crates (12 directly)

MIT license

10KB
96 lines

Crates.io Documentation

pin-weak

This create provides weak pointers for Pin<std::rc::Rc<T>> and Pin<std::rc::Arc<T>>

Motivation

Pin<std::rc::Rc<T>> and Pin<std::rc::Arc<T>> cannot be converted safely to their Weak<T> equivalent if T does not implement Unpin. That's because it would otherwise be possible to do something like this:

struct SomeStruct(PhantomPinned);
let pinned = Rc::pin(SomeStruct(PhantomPinned));

// This is unsafe ...
let weak = unsafe {
    Rc::downgrade(&Pin::into_inner_unchecked(pinned.clone()))
};

// ... because otherwise it would be possible to move the content of pinned:
let mut unpinned_rc = weak.upgrade().unwrap();
std::mem::drop((pinned, weak));
// unpinned_rc is now the only reference so this will work:
let x = std::mem::replace(
    Rc::get_mut(&mut unpinned_rc).unwrap(),
    SomeStruct(PhantomPinned),
);

In that example, x is the original SomeStruct which we moved in memory, that is undefined behavior, do not do that at home.

PinWeak

This crate simply provide a rc::PinWeak and sync::PinWeak which allow to get weak pointer from Pin<std::rc::Rc> and Pin<srd::sync::Arc>.

This is safe because you can one can only get back a Pin out of it when trying to upgrade the weak pointer.

PinWeak can be created using the PinWeak downgrade function.

Example

use pin_weak::rc::*;
struct SomeStruct(PhantomPinned, usize);
let pinned = Rc::pin(SomeStruct(PhantomPinned, 42));
let weak = PinWeak::downgrade(pinned.clone());
assert_eq!(weak.upgrade().unwrap().1, 42);
std::mem::drop(pinned);
assert!(weak.upgrade().is_none());

License

MIT

No runtime deps

Features