the [Mycelium] intrusive data structures library.
This library provides a collection of intrusive data structures originally implemented for the [Mycelium] operating system. Currently, it provides an intrusive doubly-linked list and an intrusive, lock-free MPSC queue.
Intrusive data structures are node-based data structures where the node data (pointers to other nodes and, potentially, any associated metadata) are stored within the values that are contained by the data structure, rather than owning those values.
static
s), they can be added to intrusive data structures
without allocating at all. This makes intrusive data structures useful in
code that cannot allocate — for example, we might use intrusive lists of
memory regions to implement a heap allocator.Intrusive data structures may offer better performance than other linked or node-based data structures, since allocator overhead is avoided.
Intrusive data structures require the elements stored in a collection to be
aware of the collection. If a struct
is to be stored in an intrusive
collection, it will need to store a Links
struct for that structure as a
field, and implement the [Linked
] trait to allow the intrusive data structure
to access its Links
.
Linked
] type may not be added to multiple intrusive
data structures of the same type. This can sometimes be worked around with
multiple wrapper types. An object may be a member of multiple intrusive data
structures of different types.unsafe
code. The [Linked
] trait
is unsafe to implement, as it requires that types implementing [Linked
]
uphold additional invariants. In particular, members of intrusive collections
must be pinned in memory; they may not move (or be dropped) while linked
into an intrusive collection.In keeping with Mycelium's fungal naming theme, Cordyceps is a genus of ascomycete fungi that's (in)famous for its intrusive behavior.
The following features are available (this list is incomplete; you can help by [expanding it].)
| Feature | Default | Explanation |
| :--- | :--- | :--- |
| no-cache-pad
| false
| Inhibits cache padding for the CachePadded
struct used for many linked list pointers. When this feature is NOT enabled, the size will be determined based on target platform. |
| alloc
| false
| Enables [liballoc
] dependency and features that depend on liballoc
. |
| std
| false
| Enables [libstd
] dependency and features that depend on the Rust standard library. Implies alloc
. |