pub enum FetchPageError {
UnsupportedScheme(String),
MissingHost(String),
FailedToResolve(String),
MissingHeader,
}Variants§
Trait Implementations§
Source§impl Debug for FetchPageError
impl Debug for FetchPageError
Source§impl Display for FetchPageError
impl Display for FetchPageError
Source§impl Error for FetchPageError
impl Error for FetchPageError
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()
Auto Trait Implementations§
impl Freeze for FetchPageError
impl RefUnwindSafe for FetchPageError
impl Send for FetchPageError
impl Sync for FetchPageError
impl Unpin for FetchPageError
impl UnsafeUnpin for FetchPageError
impl UnwindSafe for FetchPageError
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