pub enum DICTUrlError {
ParseError(ParseError),
UnknownAccess(String),
MissingParameters,
MissingHost,
Unsupported(&'static str),
}
Variants§
ParseError(ParseError)
UnknownAccess(String)
MissingParameters
MissingHost
Unsupported(&'static str)
Trait Implementations§
Source§impl Debug for DICTUrlError
impl Debug for DICTUrlError
Source§impl Display for DICTUrlError
impl Display for DICTUrlError
Source§impl Error for DICTUrlError
impl Error for DICTUrlError
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<ParseError> for DICTUrlError
impl From<ParseError> for DICTUrlError
Source§fn from(inner: ParseError) -> Self
fn from(inner: ParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DICTUrlError
impl RefUnwindSafe for DICTUrlError
impl Send for DICTUrlError
impl Sync for DICTUrlError
impl Unpin for DICTUrlError
impl UnwindSafe for DICTUrlError
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