Module interface

Source
Expand description

The traits abstracting over a sequence.

Traitsยง

CloneableSequence
A type behaving like an cloneable sequence over the type Item. Currently this only means the sequence is ToOwned.
EditableSequence
A type behaving like a sequence over the type Item that can be edited.
OwnedSequence
A type behaving like an owned sequence over the type Item. Currently this only means the sequence is Sized.
Sequence
A type behaving like a sequence over the type Item.
SequenceMut
A type behaving like a mutable sequence over the type Item.