#[non_exhaustive]pub enum ErrorKind {
Authorization,
Config,
Decode,
Io,
Protocol,
Receipt,
Rpc,
Timeout,
Transport,
Wallet,
Other,
}Expand description
Stable category for a client error.
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.
Authorization
Authentication or owner-authorization failure.
Config
Local configuration or option failure.
Decode
Invalid or inconsistent response data.
Io
Local filesystem or stream failure.
Protocol
OSR1, OSW1, target, or transaction protocol failure.
Receipt
Submitted transaction receipt reported failure.
Rpc
Octra RPC rejected or could not satisfy a request.
Timeout
Receipt or readiness wait exceeded its deadline.
Transport
HTTP or custom transport failure.
Wallet
Wallet loading, key validation, or signing failure.
Other
Error without a narrower stable category.
Trait Implementations§
impl Copy for ErrorKind
impl Eq for ErrorKind
impl StructuralPartialEq for ErrorKind
Auto Trait Implementations§
impl Freeze for ErrorKind
impl RefUnwindSafe for ErrorKind
impl Send for ErrorKind
impl Sync for ErrorKind
impl Unpin for ErrorKind
impl UnsafeUnpin for ErrorKind
impl UnwindSafe for ErrorKind
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