Expand description
Array-related data structures such as fixed-length arrays
Structs§
- Arr
- Fixed-length one-dimensional array implementation
- Arr2
- Fixed-length 2D array implementation
- Arr3
- Fixed-length 3D array implementation
- Arr4
- Fixed-length 4D array implementation
- Arr2
Iter - Implementation of an immutable iterator for fixed-length 2D arrays
- Arr2
Iter Mut - Implementation of an mutable iterator for fixed-length 2D arrays
- Arr2
Iter Producer - Implementation of plumbing::Producer for Arr2
- Arr2
ParIter - ParallelIterator implementation for Arr2
- Arr2
View - Implementation of a immutable view of a fixed-length 2D array
- Arr2
View Mut - Implementation of a mutable view of a fixed-length 2D array
- Arr3
Iter - Implementation of an immutable iterator for fixed-length 3D arrays
- Arr3
Iter Mut - Implementation of an mutable iterator for fixed-length 3D arrays
- Arr3
Iter Producer - Implementation of plumbing::Producer for Arr3
- Arr3
ParIter - ParallelIterator implementation for Arr3
- Arr3
View - Implementation of a immutable view of a fixed-length 3D array
- Arr3
View Mut - Implementation of a mutable view of a fixed-length 3D array
- Arr4
Iter - Implementation of an immutable iterator for fixed-length 4D arrays
- Arr4
Iter Mut - Implementation of an mutable iterator for fixed-length 4D arrays
- Arr4
Iter Producer - Implementation of plumbing::Producer for Arr4
- Arr4
ParIter - ParallelIterator implementation for Arr4
- ArrView
- Implementation of an immutable view of a fixed-length 1D array
- ArrView
Mut - Implementation of an mutable view of a fixed-length 1D array
- DiffArr
- Array difference information
- Serialized
Vec - Implementation of fixed-length arrays whose size is not specified by a type parameter
- Serialized
VecConverter - Converter via for zero-cost conversion of SerializedVec<U,T> to SerializedVec<U,R>
- Serialized
VecIter - SerializedVec’s Immutable Iterator
- Serialized
VecIter Mut - SerializedVec’s mutable Iterator
- Serialized
VecIter Producer - Implementation of plumbing::Producer for SerializedVec
- Serialized
VecPar Iter - Implementation of ParallelIterator for SerializedVec
- Serialized
VecView - Implementation of an immutable view of SerializedVec
- Shield
Slice - Wrapper to prevent operations on references to mutable slices that overwrite the slice itself with another slice
Traits§
- AsView
- Trait that defines an immutable view that references itself
- AsView
Mut - Trait that defines an mutable view that references itself
- Into
Converter - Trait that implements the ability to convert to a converter type for conversion to a destination type.
- Make
View - Trait that returns a view holding an immutable reference to the slice to be owned
- Make
View Mut - Trait that returns a view holding an mutable reference to the slice to be owned
- Slice
Size - Trait that returns the number of elements in the slice held by itself