pub struct ParseParamError;
Expand description
An error indicating that a query parameter could not be parsed.
Trait Implementations§
Source§impl Clone for ParseParamError
impl Clone for ParseParamError
Source§fn clone(&self) -> ParseParamError
fn clone(&self) -> ParseParamError
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 ParseParamError
impl Debug for ParseParamError
Source§impl Default for ParseParamError
impl Default for ParseParamError
Source§fn default() -> ParseParamError
fn default() -> ParseParamError
Returns the “default value” for a type. Read more
Source§impl Display for ParseParamError
impl Display for ParseParamError
Source§impl Error for ParseParamError
impl Error for ParseParamError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl Hash for ParseParamError
impl Hash for ParseParamError
Source§impl PartialEq for ParseParamError
impl PartialEq for ParseParamError
impl Copy for ParseParamError
impl Eq for ParseParamError
impl StructuralPartialEq for ParseParamError
Auto Trait Implementations§
impl Freeze for ParseParamError
impl RefUnwindSafe for ParseParamError
impl Send for ParseParamError
impl Sync for ParseParamError
impl Unpin for ParseParamError
impl UnwindSafe for ParseParamError
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