pub trait IntoCowBytes<'a> {
// Required method
fn into(self) -> Cow<'a, [u8]>;
}Expand description
Trait representing the ability to convert
self to a Cow<'a, [u8]>
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".