Available on crate features
collections and cons only.Structs§
- Cons
Branch - A references counted, linked list implemented similar to a cons list. This type is useful as an list of immutable items with cheap, shallow cloning, that can share nodes with other instances.
- Cons
Node - Largely intended as an internal type, these nodes are returned by [
ConsTree::into_iter_rc] because the interior of theRccan’t be unwrapped in place. - Iter
- See [
ConsTree::iter]. - Owned
Iter - See [
ConsTree::into_iter_owned]. - RcIter
- See [
ConsTree::into_iter_rc]. - Unique
Iter - See [
ConsTree::into_iter_unique].