Trait MyTryFrom
minifier::css::token
pub trait MyTryFrom<T>: Sized { type Error; fn try_from(value: T) -> Result<Self, Self::Error>; }
type Error
fn try_from(value: T) -> Result<Self, Self::Error>
impl MyTryFrom<char> for ReservedChar
type Error = &'static str
fn try_from(value: char) -> Result<ReservedChar, Self::Error>
impl<'a> MyTryFrom<&'a str> for SelectorElement<'a>
fn try_from(value: &'a str) -> Result<SelectorElement, Self::Error>