1 unstable release
0.3.0 | Dec 10, 2019 |
---|
#11 in #self-reference
24KB
343 lines
selfstack
selfstack is a procedural macro that produces a stack-like self-referential data structure with a safe interface. This is safe because layers in the stack can only reference layers below them, and lower layers outlive higher layers. This restriction prevents cycles, dangling references, and other unsoundness that would generally be possible with self-reference.
The tests are also run with miri to check generated unsafe code for compliance with stacked borrows.
selfstack vs rental
rental is a similar approach to a similar problem, but it has a few differences.
- Rental requires all fields except the last to implement
StableDeref
. Typically this means you mustBox
all but the last element. However, this allows the rental to be moved. selfstack does not require fields to implement any trait, but the store struct cannot be moved once it is initialized (although the substruct used to access the fields can be moved). - Rental must be fully constructed in 1 call to
new
ortry_new
. selfstack incrementally builds each field in successive calls. The selfstack can be safely used at any level of initialization. You can emulate this feature in rental by boxing a rental and making it the first field of another rental. - Rental has more convenience features like
IntoSuffix
, which derefs the rental as the last field andinto_head
, which drops all fields but the first and returns it. - Rental has more configuration options (e.g. mutability, subrentals, covariance, deref). selfstack always works the same way and does not special require configuration.
License
Licensed under either of
- Apache License, Version 2.0
- MIT License
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~2MB
~48K SLoC