pub enum PercentDecodeError {
InvalidHexDigit {
position: usize,
byte: u8,
},
MissingDigits {
single: bool,
},
}
Variants§
Trait Implementations§
Source§impl Clone for PercentDecodeError
impl Clone for PercentDecodeError
Source§fn clone(&self) -> PercentDecodeError
fn clone(&self) -> PercentDecodeError
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 PercentDecodeError
impl Debug for PercentDecodeError
Source§impl Display for PercentDecodeError
impl Display for PercentDecodeError
Source§impl Error for PercentDecodeError
Available on crate feature std
only.
impl Error for PercentDecodeError
Available on crate feature
std
only.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()
impl Copy for PercentDecodeError
Auto Trait Implementations§
impl Freeze for PercentDecodeError
impl RefUnwindSafe for PercentDecodeError
impl Send for PercentDecodeError
impl Sync for PercentDecodeError
impl Unpin for PercentDecodeError
impl UnwindSafe for PercentDecodeError
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