enum PathAndQueryError {
InvalidPathChar,
InvalidQueryChar,
FragmentNotAllowed,
}Expand description
Validation result for path and query parsing.
Variants§
Trait Implementations§
Source§impl Clone for PathAndQueryError
impl Clone for PathAndQueryError
Source§fn clone(&self) -> PathAndQueryError
fn clone(&self) -> PathAndQueryError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PathAndQueryError
impl Debug for PathAndQueryError
Source§impl PartialEq for PathAndQueryError
impl PartialEq for PathAndQueryError
impl Copy for PathAndQueryError
impl Eq for PathAndQueryError
impl StructuralPartialEq for PathAndQueryError
Auto Trait Implementations§
impl Freeze for PathAndQueryError
impl RefUnwindSafe for PathAndQueryError
impl Send for PathAndQueryError
impl Sync for PathAndQueryError
impl Unpin for PathAndQueryError
impl UnwindSafe for PathAndQueryError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more