pub enum RequestrError {
MissingParameter(Vec<String>),
OpeningTemplateFailed(String, Error),
TemplateParsingFailed(Error),
BrokenRequestConfig(String),
UnknownRequestError(Error),
Unknown,
}
Variants§
MissingParameter(Vec<String>)
OpeningTemplateFailed(String, Error)
TemplateParsingFailed(Error)
BrokenRequestConfig(String)
UnknownRequestError(Error)
Unknown
Trait Implementations§
Source§impl Debug for RequestrError
impl Debug for RequestrError
Source§impl Display for RequestrError
impl Display for RequestrError
Source§impl Error for RequestrError
impl Error for RequestrError
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<Error> for RequestrError
impl From<Error> for RequestrError
Auto Trait Implementations§
impl Freeze for RequestrError
impl !RefUnwindSafe for RequestrError
impl Send for RequestrError
impl Sync for RequestrError
impl Unpin for RequestrError
impl !UnwindSafe for RequestrError
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