Trait hybrid_array::ArraySize
source · pub unsafe trait ArraySize: Unsigned {
type ArrayType<T>: ArrayExt<T> + AsRef<[T]> + AsMut<[T]> + IntoArray<T> + IntoIterator<Item = T>;
}
Expand description
Trait which associates a usize
size and ArrayType
with a
typenum
-provided Unsigned
integer.
Safety
ArrayType
MUST be an array with a number of elements exactly equal to
Unsigned::USIZE
. Breaking this requirement will cause undefined behavior.
NOTE: This trait is effectively sealed and can not be implemented by third-party crates.
It is implemented only for a number of types defined in typenum::consts
.
Required Associated Types§
Object Safety§
This trait is not object safe.