pub trait HasBytesVec {
    fn bytes(&self) -> &[u8]
Notable traits for &'_ [u8]
impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
;
fn bytes_mut(&mut self) -> &mut Vec<u8>
Notable traits for Vec<u8, A>
impl<A> Write for Vec<u8, A> where
    A: Allocator
; }
Expand description

Contains an internal bytes Vector

Required methods

The internal bytes map

The internal bytes map (as mutable borrow)

Implementors