Skip to main contentCrate michis_collection_cursor
Source - CollectionCursor
- A
CollectionCursor wraps an index-based collection, such as a Vec<T>, providing it with
a cursor that points to a spot in the collection.
- SeekFrom
- The various ways one can move the cursor of a
CollectionCursor.
- IndexableCollection
- A trait for collections which are index-based, allowing the inner contents to be accessed.
- IndexableCollectionMut
- A trait for
IndexableCollection-implementing types which can also be mutated. - IndexableCollectionResizable
- A trait for
IndexableCollectionMut-implementing types which can also be resized.