Trait StrLike
combine::parser::combinator
pub trait StrLike: Sealed { fn from_utf8(&self) -> Result<&str, ()>; }
fn from_utf8(&self) -> Result<&str, ()>
impl StrLike for String
impl<'a> StrLike for &'a str
impl StrLike for str
impl StrLike for Vec<u8>
impl<'a> StrLike for &'a [u8]
impl StrLike for [u8]