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 
ByteSlicewhich can be cloned without violating dereference stability. - Copyable
Byte Slice  - A 
ByteSlicewhich can be copied without violating dereference stability. - Into
Byte Slice  - A 
ByteSlicethat conveys no ownership, and so can be converted into a byte slice. - Into
Byte Slice Mut  - A 
ByteSliceMutthat conveys no ownership, and so can be converted into a mutable byte slice. - Split
Byte Slice  - A 
ByteSlicethat can be split in two. - Split
Byte Slice Mut  - A shorthand for 
SplitByteSliceandByteSliceMut.