Enum matchit::MatchError
source · [−]pub enum MatchError {
MissingTrailingSlash,
ExtraTrailingSlash,
NotFound,
}
Expand description
A failed match attempt.
use matchit::{MatchError, Router};
let mut router = Router::new();
router.insert("/home", "Welcome!")?;
router.insert("/blog/", "Our blog.")?;
// a route exists without the trailing slash
if let Err(err) = router.at("/home/") {
assert_eq!(err, MatchError::ExtraTrailingSlash);
}
// a route exists with a trailing slash
if let Err(err) = router.at("/blog") {
assert_eq!(err, MatchError::MissingTrailingSlash);
}
// no routes match
if let Err(err) = router.at("/foobar") {
assert_eq!(err, MatchError::NotFound);
}
Variants
MissingTrailingSlash
The path was missing a trailing slash.
ExtraTrailingSlash
The path had an extra trailing slash.
NotFound
No matching route was found.
Trait Implementations
sourceimpl Clone for MatchError
impl Clone for MatchError
sourcefn clone(&self) -> MatchError
fn clone(&self) -> MatchError
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for MatchError
impl Debug for MatchError
sourceimpl Display for MatchError
impl Display for MatchError
sourceimpl Error for MatchError
impl Error for MatchError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl PartialEq<MatchError> for MatchError
impl PartialEq<MatchError> for MatchError
sourcefn eq(&self, other: &MatchError) -> bool
fn eq(&self, other: &MatchError) -> bool
impl Copy for MatchError
impl Eq for MatchError
impl StructuralEq for MatchError
impl StructuralPartialEq for MatchError
Auto Trait Implementations
impl RefUnwindSafe for MatchError
impl Send for MatchError
impl Sync for MatchError
impl Unpin for MatchError
impl UnwindSafe for MatchError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more