Expand description
Common relevant traits, structs, enums.
Re-exports§
pub use crate::FixedVec;
Enums§
- Pinned
VecGrowth Error - 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. - Collection
Mut - A mutable collection providing the
iter_mut
method which returns an iterator over mutable references of elements of the collection. - Concurrent
Pinned Vec - A wrapper for a pinned vector which provides additional guarantees for concurrent programs.
- Into
Concurrent Pinned Vec - 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 typeItem
every timeiter
method is called. - Pinned
Vec - Trait for vector representations differing from
std::vec::Vec
by the following: