Expand description
Intrusive singly-linked list.
Structs§
- Intrusive link that allows an object to be inserted into a
SinglyLinkedList
. This link allows the structure to be shared between threads. - Default
AtomicLinkOps
implementation forLinkedList
. - A cursor which provides read-only access to a
SinglyLinkedList
. - A cursor which provides mutable access to a
SinglyLinkedList
. - A cursor with ownership over the
SinglyLinkedList
it points into. - An iterator which consumes a
SinglyLinkedList
. - An iterator over references to the items of a
SinglyLinkedList
. - Intrusive link that allows an object to be inserted into a
SinglyLinkedList
. - Default
LinkOps
implementation forSinglyLinkedList
. - An intrusive singly-linked list.
Traits§
- Link operations for
SinglyLinkedList
.