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
AtomicLinkOps
implementation 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
SinglyLinkedList
it 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
LinkOps
implementation forSinglyLinkedList
. - Singly
Linked List - An intrusive singly-linked list.
Traits§
- Singly
Linked List Ops - Link operations for
SinglyLinkedList
.