pub trait ToBytes { type Target: ?Sized; // Required method fn to_bytes(&self) -> Bytes<&Self::Target>; }
Returns a Bytes type.