#[non_exhaustive]pub enum Error {
User(UserError),
Client(Box<dyn Error + Send + Sync + 'static>),
DisconnectedWillReconnect(String),
Deserialization(Error),
Decode(Error),
InsecureUrl(String),
}Expand description
This encapsulates any errors that could be emitted in this crate.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
User(UserError)
An error which indicates a user fault.
Client(Box<dyn Error + Send + Sync + 'static>)
An error coming from the underlying RPC Client.
DisconnectedWillReconnect(String)
The connection was lost and the client will automatically reconnect. Clients should only emit this if they are internally reconnecting, and will buffer any calls made to them in the meantime until the connection is re-established.
Deserialization(Error)
Cannot deserialize the response.
Decode(Error)
Cannot SCALE decode some part of the response.
InsecureUrl(String)
The requested URL is insecure.
Implementations§
Trait Implementations§
Source§impl Error for Error
impl Error for Error
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 !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