Expand description
Intrusive doubly-linked list.
Structs§
- Atomic
Link - Intrusive atomic link that allows an object to be inserted into a
LinkedList
. This link allows the structure to be shared between threads. - Atomic
Link Ops - Default
AtomicLinkOps
implementation forLinkedList
. - Cursor
- A cursor which provides read-only access to a
LinkedList
. - Cursor
Mut - A cursor which provides mutable access to a
LinkedList
. - Cursor
Owning - A cursor with ownership over the
LinkedList
it points into. - Into
Iter - An iterator which consumes a
LinkedList
. - Iter
- An iterator over references to the items of a
LinkedList
. - Link
- Intrusive link that allows an object to be inserted into a
LinkedList
. - LinkOps
- Default
LinkOps
implementation forLinkedList
. - Linked
List - An intrusive doubly-linked list.
Traits§
- Linked
List Ops - Link operations for
LinkedList
.