pub type Expected<I> = Expected<<I as Input>::Token, <I as Input>::Slice>;
enum Expected<I> {
Token(Option<InlinableString>, Option<<I as Input>::Token>),
Slice(Option<InlinableString>, Option<<I as Input>::Slice>),
Eof(Option<<I as Input>::Token>),
Other(CowInlineString),
Elided,
}
Performs copy-assignment from
source.
Read more
Formats the value using the given formatter.
Read more
Formats the value using the given formatter.
Read more
Converts to this type from the input type.
Converts to this type from the input type.