pub enum URIUnescapeError {
InvalidEscape,
Utf8Error(Utf8Error),
}Variants§
Trait Implementations§
Source§impl From<Utf8Error> for URIUnescapeError
impl From<Utf8Error> for URIUnescapeError
Source§fn from(value: Utf8Error) -> URIUnescapeError
fn from(value: Utf8Error) -> URIUnescapeError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for URIUnescapeError
impl RefUnwindSafe for URIUnescapeError
impl Send for URIUnescapeError
impl Sync for URIUnescapeError
impl Unpin for URIUnescapeError
impl UnsafeUnpin for URIUnescapeError
impl UnwindSafe for URIUnescapeError
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