pub struct PathMismatch {
pub subs: Vec<SubstitutionMismatch>,
}Expand description
A failure to bind to a specific URI.
The client cannot match a URI when a required parameter is missing, or when it is set to an invalid format.
Fields§
§subs: Vec<SubstitutionMismatch>All missing or misformatted fields needed to bind to this path
Trait Implementations§
Source§impl Debug for PathMismatch
impl Debug for PathMismatch
Source§impl Default for PathMismatch
impl Default for PathMismatch
Source§fn default() -> PathMismatch
fn default() -> PathMismatch
Returns the “default value” for a type. Read more
Source§impl Display for PathMismatch
impl Display for PathMismatch
Source§impl PartialEq for PathMismatch
impl PartialEq for PathMismatch
impl StructuralPartialEq for PathMismatch
Auto Trait Implementations§
impl Freeze for PathMismatch
impl RefUnwindSafe for PathMismatch
impl Send for PathMismatch
impl Sync for PathMismatch
impl Unpin for PathMismatch
impl UnwindSafe for PathMismatch
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