Expand description
Intrusive singly-linked list.
Structs§
- Atomic
Link - Intrusive link that allows an object to be inserted into a
SinglyLinkedList. 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
SinglyLinkedList. - Cursor
Mut - A cursor which provides mutable access to a
SinglyLinkedList. - Cursor
Owning - A cursor with ownership over the
SinglyLinkedListit points into. - Into
Iter - An iterator which consumes a
SinglyLinkedList. - Iter
- An iterator over references to the items of a
SinglyLinkedList. - Link
- Intrusive link that allows an object to be inserted into a
SinglyLinkedList. - LinkOps
- Default
LinkOpsimplementation forSinglyLinkedList. - Singly
Linked List - An intrusive singly-linked list.
Traits§
- Singly
Linked List Ops - Link operations for
SinglyLinkedList.