% containerof - Macros supporting intrusive data structures in Rust.
An intrusive structure is a general-purpose structure directly embedded within a containing structure, in order to add that general-purpose facility to the container. As an example, one might use an intrusive "link" structure to allow objects to be organized in a linked-list:
```rust
extern crate containerof;
struct Link {
next: Option
struct Container { link: Link, } containerof_intrusive!(ContainerLink = Container:link::Link);
```
While this module does not provide a linked-list implementation (for separation-of-concerns reasons, I believe a linked-list implementation belongs in a separate crate), it does provide some necessary abstractions for using intrusive structures:
containerof_field_offset!
macro, which identifies the location
of a field in a containing structure. This isn't too useful in
itself, but is necessary to support:containerof_intrusive!
macro, which provides a newtype that
describes the translation between the "intrusive" field and the
"container" structure.Here is an example implementation of Church-numerals using an intrusive linked-list:
```rust
extern crate containerof; use containerof::*;
struct Church {
next: Option
containerof_intrusive!(ChurchLink = Church:next::Option
impl Church {
fn new() -> OwnBox
```
containerof
uses three main concepts for working with intrusive
structures:
Church.next
in the above example);Church
);ChurchLink
).In addition, there are three auxiliary structures for managing ownership and borrowing of intrusive structures:
OwnBox
, which is a pointer type representing ownership of the
container (even if all you have is a field reference).BorrowBox
, which is a pointer type representing a borrow of the
container.BorrowBoxMut
, which is a pointer type representing a mutable
borrow of the container.git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)