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