pub enum FetchLinksError {
RequestError(RequestError),
MissingUploadsPage,
}Variants§
RequestError(RequestError)
MissingUploadsPage
Trait Implementations§
Source§impl Debug for FetchLinksError
impl Debug for FetchLinksError
Source§impl From<RequestError> for FetchLinksError
impl From<RequestError> for FetchLinksError
Source§fn from(err: RequestError) -> FetchLinksError
fn from(err: RequestError) -> FetchLinksError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FetchLinksError
impl !RefUnwindSafe for FetchLinksError
impl Send for FetchLinksError
impl Sync for FetchLinksError
impl Unpin for FetchLinksError
impl !UnwindSafe for FetchLinksError
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