Trait MyTryFrom
minifier::js::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;
impl<'a> MyTryFrom<&'a str> for Keyword type Error = &'static str;
impl MyTryFrom<ReservedChar> for Condition type Error = &'static str;
impl MyTryFrom<ReservedChar> for Operation type Error = &'static str;