pub trait AsBytes { // Required method fn as_bytes(&self) -> &[u8] ⓘ; }
Trait that transforms thing to a slice of u8.
Converts self to a slice of bytes.
self