Module prelude

Source
Expand description

Common relevant traits, structs, enums.

Re-exports§

pub use crate::FixedVec;

Enums§

PinnedVecGrowthError
Error occurred during an attempt to increase capacity of the pinned vector.

Traits§

Collection
A collection providing the iter method which returns an iterator over shared references of elements of the collection.
CollectionMut
A mutable collection providing the iter_mut method which returns an iterator over mutable references of elements of the collection.
ConcurrentPinnedVec
A wrapper for a pinned vector which provides additional guarantees for concurrent programs.
IntoConcurrentPinnedVec
A pinned vector which can be wrapped into a concurrent pinned vector.
Iterable
An Iterable is any type which can return a new iterator that yields elements of the associated type Item every time iter method is called.
PinnedVec
Trait for vector representations differing from std::vec::Vec by the following: