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