3 unstable releases

0.2.0 Jan 30, 2022
0.1.1 Oct 9, 2018
0.1.0 Oct 9, 2018

#220 in Memory management

Download history 637/week @ 2024-07-23 446/week @ 2024-07-30 615/week @ 2024-08-06 594/week @ 2024-08-13 575/week @ 2024-08-20 669/week @ 2024-08-27 597/week @ 2024-09-03 356/week @ 2024-09-10 283/week @ 2024-09-17 448/week @ 2024-09-24 521/week @ 2024-10-01 238/week @ 2024-10-08 480/week @ 2024-10-15 326/week @ 2024-10-22 338/week @ 2024-10-29 411/week @ 2024-11-05

1,656 downloads per month
Used in 11 crates (5 directly)

MIT license

11KB
112 lines

PinCell

This library defines the PinCell type, a pinning variant of the standard library's RefCell.

It is not safe to "pin project" through a RefCell - getting a pinned reference to something inside the RefCell when you have a pinned refernece to the RefCell - because RefCell is too powerful.

A PinCell is slightly less powerful than RefCell: unlike a RefCell, one cannot get a mutable reference into a PinCell, only a pinned mutable reference (Pin<&mut T>). This makes pin projection safe, allowing you to use interior mutability with the knowledge that T will never actually be moved out of the RefCell that wraps it.

License

Licensed under MIT license.

lib.rs:

This library defines the PinCell type, a pinning variant of the standard library's RefCell.

It is not safe to "pin project" through a RefCell - getting a pinned reference to something inside the RefCell when you have a pinned refernece to the RefCell - because RefCell is too powerful.

A PinCell is slightly less powerful than RefCell: unlike a RefCell, one cannot get a mutable reference into a PinCell, only a pinned mutable reference (Pin<&mut T>). This makes pin projection safe, allowing you to use interior mutability with the knowledge that T will never actually be moved out of the RefCell that wraps it.

No runtime deps