Module orx_fixed_vec::prelude
source · Expand description
Common relevant traits, structs, enums.
Re-exports
pub use crate::FixedVec;
Traits
- Marker trait for types to be contained in a
PinnedVec
which do not hold a field which is a reference to a another element of the same vector. - Trait for vector representations differing from
std::vec::Vec
by the following: PinnedVecSimple
is aPinnedVec
where the elements satisfy the trait boundT: NotSelfRefVecItem
.- A type to be used as an element of a
PinnedVec
which holds a reference to a another element of the same vector.