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
AtomicLinkOpsimplementation 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
LinkedListit 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
LinkOpsimplementation forLinkedList. - Linked
List - An intrusive doubly-linked list.
Traits§
- Linked
List Ops - Link operations for
LinkedList.