pub struct SignRawTransactionResultError {
pub txid: Txid,
pub vout: u32,
pub script_sig: Script,
pub sequence: u32,
pub error: String,
}
Fields
txid: Txid
vout: u32
script_sig: Script
sequence: u32
error: String
Trait Implementations
sourceimpl Clone for SignRawTransactionResultError
impl Clone for SignRawTransactionResultError
sourcefn clone(&self) -> SignRawTransactionResultError
fn clone(&self) -> SignRawTransactionResultError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SignRawTransactionResultError
impl Debug for SignRawTransactionResultError
sourceimpl<'de> Deserialize<'de> for SignRawTransactionResultError
impl<'de> Deserialize<'de> for SignRawTransactionResultError
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<SignRawTransactionResultError> for SignRawTransactionResultError
impl PartialEq<SignRawTransactionResultError> for SignRawTransactionResultError
sourcefn eq(&self, other: &SignRawTransactionResultError) -> bool
fn eq(&self, other: &SignRawTransactionResultError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Eq for SignRawTransactionResultError
impl StructuralEq for SignRawTransactionResultError
impl StructuralPartialEq for SignRawTransactionResultError
Auto Trait Implementations
impl RefUnwindSafe for SignRawTransactionResultError
impl Send for SignRawTransactionResultError
impl Sync for SignRawTransactionResultError
impl Unpin for SignRawTransactionResultError
impl UnwindSafe for SignRawTransactionResultError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more