pub enum BuildQueryError {
InvalidUri(InvalidUri),
InvalidUriParts(InvalidUriParts),
SerializeQuery(Error),
}
Available on crate feature
query
only.Variants§
Trait Implementations§
Source§impl Debug for BuildQueryError
impl Debug for BuildQueryError
Source§impl Display for BuildQueryError
impl Display for BuildQueryError
Source§impl Error for BuildQueryError
impl Error for BuildQueryError
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 From<BuildQueryError> for BuildRequestError
impl From<BuildQueryError> for BuildRequestError
Source§fn from(source: BuildQueryError) -> Self
fn from(source: BuildQueryError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for BuildQueryError
impl From<Error> for BuildQueryError
Source§impl From<InvalidUri> for BuildQueryError
impl From<InvalidUri> for BuildQueryError
Source§fn from(source: InvalidUri) -> Self
fn from(source: InvalidUri) -> Self
Converts to this type from the input type.
Source§impl From<InvalidUriParts> for BuildQueryError
impl From<InvalidUriParts> for BuildQueryError
Source§fn from(source: InvalidUriParts) -> Self
fn from(source: InvalidUriParts) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BuildQueryError
impl RefUnwindSafe for BuildQueryError
impl Send for BuildQueryError
impl Sync for BuildQueryError
impl Unpin for BuildQueryError
impl UnwindSafe for BuildQueryError
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