Crate vec_split Copy item path Source accessors fast_accessor Despite the name, FastAccessor is not much less safe than SafeAccessor.
However, it does not require T: Sized, or I: usize. safe_accessor impl_accessors Macro to easily implement the Accessor types for your own array types. RawVector Trait used to show that a vector-like type is guaranteed to have a
consistent and usable-for-pointers memory layout. SizedVectorArray Trait to be implemented for all types that are arrays of some sort, contain
only vectors, and have a way to access their internal pointers . Used to
allow the use of FastAccessor
s. Vector Trait to be implemented for all types that are vector-like. For example,
arrays, tuples, vecs, etc. VectorArray Trait to be implemented for all types that are arrays of some sort and
contain only vectors.