pub trait AsBytes {
    fn as_bytes(&self) -> &[u8] ;
}
Expand description

Trait that transforms thing to a slice of u8.

Required Methods

Converts self to a slice of bytes.

Implementors