Searched defs:LexError (Results 1 – 4 of 4) sorted by relevance
28 pub(crate) enum LexError { enum111 fn from_str(src: &str) -> Result<TokenStream, LexError> { in from_str() argument123 fn proc_macro_parse(src: &str) -> Result<proc_macro::TokenStream, LexError> { in proc_macro_parse() argument260 impl LexError { implementation269 impl From<proc_macro::LexError> for LexError { implementation275 impl From<fallback::LexError> for LexError { implementation281 impl Debug for LexError { implementation294 impl Display for LexError { implementation
191 pub struct LexError { struct192 inner: imp::LexError, argument193 _marker: Marker,241 fn from_str(src: &str) -> Result<TokenStream, LexError> { in from_str() argument314 impl LexError { implementation320 impl Debug for LexError { implementation326 impl Display for LexError { implementation332 impl Error for LexError {} implementation1260 fn from_str(repr: &str) -> Result<Self, LexError> { in from_str() argument
39 pub(crate) struct LexError { struct43 impl LexError { impl172 fn from_str(src: &str) -> Result<TokenStream, LexError> { in from_str() argument186 impl Display for LexError { implementation
168 pub(crate) fn token_stream(mut input: Cursor) -> Result<TokenStream, LexError> { in token_stream() argument253 fn lex_error(cursor: Cursor) -> LexError { in lex_error()