pub trait BytesBufExt { // Required method fn to_vec(self) -> Result<Vec<u8>>; }
Helper extension trait for Box<dyn bytes::Buf + 'static + Send>.
Box<dyn bytes::Buf + 'static + Send>
Convert into a Vec<u8>.
Vec<u8>