The representation of &[T] or &mut [T].
struct Slice<T> {
ptr: *const T,
len: usize,
}| Name | Description |
|---|---|
| ptr | The pointer to the first element of the slice. |
| len | The number of elements in the slice. |
| Name | Description |
|---|---|
| Copy | Objects that can safely be copied via |