1 2 3 4 5 6 7
use crate::Cow; impl<'lt> From<&'lt [u8]> for Cow<'lt> { fn from(value: &'lt [u8]) -> Self { Self::Borrowed(value) } }