pub enum Web2PptError {
FetchError(String),
ParseError(String),
GenerationError(String),
InvalidUrl(String),
NoContent,
IoError(Error),
}Expand description
Error types for web2ppt operations
Variants§
FetchError(String)
ParseError(String)
GenerationError(String)
InvalidUrl(String)
NoContent
IoError(Error)
Trait Implementations§
Source§impl Debug for Web2PptError
impl Debug for Web2PptError
Source§impl Display for Web2PptError
impl Display for Web2PptError
Source§impl Error for Web2PptError
impl Error for Web2PptError
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 Web2PptError
impl !RefUnwindSafe for Web2PptError
impl Send for Web2PptError
impl Sync for Web2PptError
impl Unpin for Web2PptError
impl !UnwindSafe for Web2PptError
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