Struct yew_router_nested_route_parser::PrettyParseError [−][src]
pub struct PrettyParseError<'a> {
pub error: ParseError,
pub input: &'a str,
pub remaining: &'a str,
}
Expand description
Parser error that can print itself in a human-readable format.
Fields
error: ParseError
Inner error
input: &'a str
Input to the parser
remaining: &'a str
Remaining input after partially tokenizing
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<'a> RefUnwindSafe for PrettyParseError<'a>
impl<'a> Send for PrettyParseError<'a>
impl<'a> Sync for PrettyParseError<'a>
impl<'a> Unpin for PrettyParseError<'a>
impl<'a> UnwindSafe for PrettyParseError<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more