pub enum PartialParsedUrlParseError {
InvalidDecryptionKey,
}
Variants§
InvalidDecryptionKey
Trait Implementations§
Source§impl Debug for PartialParsedUrlParseError
impl Debug for PartialParsedUrlParseError
Source§impl Display for PartialParsedUrlParseError
impl Display for PartialParsedUrlParseError
Source§impl Error for PartialParsedUrlParseError
impl Error for PartialParsedUrlParseError
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()
Source§impl From<PartialParsedUrlParseError> for ParseUrlError
impl From<PartialParsedUrlParseError> for ParseUrlError
Source§fn from(source: PartialParsedUrlParseError) -> Self
fn from(source: PartialParsedUrlParseError) -> Self
Converts to this type from the input type.
Source§impl Ord for PartialParsedUrlParseError
impl Ord for PartialParsedUrlParseError
Source§fn cmp(&self, other: &PartialParsedUrlParseError) -> Ordering
fn cmp(&self, other: &PartialParsedUrlParseError) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for PartialParsedUrlParseError
impl PartialOrd for PartialParsedUrlParseError
impl Eq for PartialParsedUrlParseError
impl StructuralPartialEq for PartialParsedUrlParseError
Auto Trait Implementations§
impl Freeze for PartialParsedUrlParseError
impl RefUnwindSafe for PartialParsedUrlParseError
impl Send for PartialParsedUrlParseError
impl Sync for PartialParsedUrlParseError
impl Unpin for PartialParsedUrlParseError
impl UnwindSafe for PartialParsedUrlParseError
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