Expand description
Traits for types that encapsulate a [u8]
.
These traits are used to bound the B
parameter of Ref
.
Traitsยง
- Byte
Slice - A mutable or immutable reference to a byte slice.
- Byte
Slice Mut - A mutable reference to a byte slice.
- Cloneable
Byte Slice - A
ByteSlice
which can be cloned without violating dereference stability. - Copyable
Byte Slice - A
ByteSlice
which can be copied without violating dereference stability. - Into
Byte Slice - A
ByteSlice
that conveys no ownership, and so can be converted into a byte slice. - Into
Byte Slice Mut - A
ByteSliceMut
that conveys no ownership, and so can be converted into a mutable byte slice. - Split
Byte Slice - A
ByteSlice
that can be split in two. - Split
Byte Slice Mut - A shorthand for
SplitByteSlice
andByteSliceMut
.