pub trait IntoCowBytes<'a> {
    fn into(self) -> Cow<'a, [u8]>;
}
Expand description

Trait representing the ability to convert self to a Cow<'a, [u8]>

Required methods

Consume self and produce a Cow<'a, [u8]>

Implementations on Foreign Types

Implementors