1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
Appellation: specs <module>
Contrib: FL03 <jo3mccain@icloud.com>
*/
/// [`AsSlice`] is a generic trait for converting a type into a slice of its
/// elements. This is useful for types that can be represented as a contiguous sequence of
/// elements, such as arrays, vectors, or other collections.
/// [`AsSliceMut`] is a generic trait for converting a type into a mutable slice of its
/// elements.
/*
************* Implementations *************
*/