pub struct InvalidUriBytes(/* private fields */);Expand description
An error resulting from a failed attempt to construct a URI.
Trait Implementations§
Source§impl Debug for InvalidUriBytes
impl Debug for InvalidUriBytes
Source§impl Display for InvalidUriBytes
impl Display for InvalidUriBytes
Source§impl Error for InvalidUriBytes
impl Error for InvalidUriBytes
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
Source§impl From<ErrorKind> for InvalidUriBytes
impl From<ErrorKind> for InvalidUriBytes
Source§fn from(src: ErrorKind) -> InvalidUriBytes
fn from(src: ErrorKind) -> InvalidUriBytes
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InvalidUriBytes
impl RefUnwindSafe for InvalidUriBytes
impl Send for InvalidUriBytes
impl Sync for InvalidUriBytes
impl Unpin for InvalidUriBytes
impl UnwindSafe for InvalidUriBytes
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