pub enum SignRawTransactionError {
Hex(FromHexError),
Errors(SignFailError),
}
Expand description
Error when converting a SignRawTransaction
type into the model type.
Variants§
Hex(FromHexError)
Conversion of the transaction hex
field failed.
Errors(SignFailError)
Conversion of the transaction errors
field failed.
Trait Implementations§
Source§impl Debug for SignRawTransactionError
impl Debug for SignRawTransactionError
Source§impl Display for SignRawTransactionError
impl Display for SignRawTransactionError
Source§impl Error for SignRawTransactionError
impl Error for SignRawTransactionError
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 SignRawTransactionError
impl !RefUnwindSafe for SignRawTransactionError
impl Send for SignRawTransactionError
impl Sync for SignRawTransactionError
impl Unpin for SignRawTransactionError
impl !UnwindSafe for SignRawTransactionError
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