pub enum ErrorKind {
OutPoint,
Transaction,
SubmitTransaction,
Script,
Header,
Block,
Internal,
Dao,
Spec,
}
Expand description
A list specifying categories of ckb error.
This list is intended to grow over time and it is not recommended to exhaustively match against it.
It is used with Error
.
Variants§
OutPoint
It indicates that the underlying error is OutPointError
.
Transaction
It indicates that the underlying error is TransactionError
.
SubmitTransaction
It indicates that the underlying error is Reject
.
Script
It indicates that the underlying error is TransactionScriptError
.
Header
It indicates that the underlying error is HeaderError
.
Block
It indicates that the underlying error is BlockError
Internal
It indicates that the underlying error is InternalError
Dao
It indicates that the underlying error is DaoError
Spec
It indicates that the underlying error is SpecError
Implementations§
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 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)