Structs§
- Into
Iter - An iterator that moves out of a
OneOrMany
. Thisstruct
is created by theinto_iter
method onOneOrMany
(provided by theIntoIterator
trait). - Iter
- Immutable iterator over a
OneOrMany
. Thisstruct
is created byOneOrMany::iter
.
Enums§
- OneOr
Many - Represents either a single value, or multiple values of T. Useful for differentiating between an array of length 1 and a single value.