pub enum Error {
ErrorInternalGeneric(Option<String>),
ErrorInternalUrlParsing,
ErrorSendingHttpRequest(Option<String>),
ErrorJsonParsing(Option<String>),
ErrorApiResponse(String),
ErrorParameter(Option<String>),
}Expand description
List of possible error as occurs from the operations
Variants§
ErrorInternalGeneric(Option<String>)
Internal error for generic error combined altogether Contain optional error message
ErrorInternalUrlParsing
Internal error from parsing Url
ErrorSendingHttpRequest(Option<String>)
Error in sending HTTP request Contains optional error message
ErrorJsonParsing(Option<String>)
Error JSON parsing Contain optional error message
ErrorApiResponse(String)
Error from Api response back from upstream API server containing the error message
ErrorParameter(Option<String>)
Parameter to function error
Trait Implementations§
Source§impl Error for EvmError
impl Error for EvmError
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 Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnsafeUnpin for Error
impl UnwindSafe for Error
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