pub struct SubstitutionMismatch {
pub field_name: &'static str,
pub problem: SubstitutionFail,
}Expand description
A failure to substitute a variable from a request into a URI.
Fields§
§field_name: &'static strThe name of the field that was not substituted.
Nested fields are ‘.’-separated.
problem: SubstitutionFailWhy the substitution failed.
Trait Implementations§
Source§impl Debug for SubstitutionMismatch
impl Debug for SubstitutionMismatch
Source§impl Display for SubstitutionMismatch
impl Display for SubstitutionMismatch
Source§impl PartialEq for SubstitutionMismatch
impl PartialEq for SubstitutionMismatch
impl StructuralPartialEq for SubstitutionMismatch
Auto Trait Implementations§
impl Freeze for SubstitutionMismatch
impl RefUnwindSafe for SubstitutionMismatch
impl Send for SubstitutionMismatch
impl Sync for SubstitutionMismatch
impl Unpin for SubstitutionMismatch
impl UnwindSafe for SubstitutionMismatch
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