pub enum TransactionAddError {
AlreadyExists,
BlockNotFound,
TooManyTransactions,
TotalSizeTooLarge,
}
Expand description
Error for TransactionPool::add()
method
Variants§
AlreadyExists
Already exists
BlockNotFound
The block isn’t found, possibly too old
TooManyTransactions
Too many transactions
TotalSizeTooLarge
Total size too large
Trait Implementations§
Source§impl Debug for TransactionAddError
impl Debug for TransactionAddError
Source§impl Display for TransactionAddError
impl Display for TransactionAddError
Source§impl Error for TransactionAddError
impl Error for TransactionAddError
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 TransactionAddError
impl RefUnwindSafe for TransactionAddError
impl Send for TransactionAddError
impl Sync for TransactionAddError
impl Unpin for TransactionAddError
impl UnwindSafe for TransactionAddError
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