pub trait IntoCowBytes<'a> { fn into(self) -> Cow<'a, [u8]>; }
Trait representing the ability to convert self to a Cow<'a, [u8]>
Cow<'a, [u8]>
Consume self and produce a Cow<'a, [u8]>
self