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. - A vector of elements of T which differs from the
std::vec::Vec
by the following feature: PinnedVecSimple
is aPinnedVec
where the elements satisfy the trait bound `T: NotSelfRefVecItem.- A type to be contained in a
PinnedVec
which does hold a field which is a reference to a another element of the same vector.