pub struct SignRawTransactionWithWallet {
pub hex: String,
pub complete: bool,
pub errors: Option<Vec<SignRawTransactionWithWalletError>>,
}
Expand description
Models the result of JSON-RPC method signrawtransactionwithwallet
.
§Note
This assumes that the transactions are present in the underlying Bitcoin client’s wallet.
Fields§
§hex: String
The Transaction ID.
complete: bool
If the transaction has a complete set of signatures.
errors: Option<Vec<SignRawTransactionWithWalletError>>
Errors, if any.
Trait Implementations§
Source§impl Clone for SignRawTransactionWithWallet
impl Clone for SignRawTransactionWithWallet
Source§fn clone(&self) -> SignRawTransactionWithWallet
fn clone(&self) -> SignRawTransactionWithWallet
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SignRawTransactionWithWallet
impl Debug for SignRawTransactionWithWallet
Source§impl<'de> Deserialize<'de> for SignRawTransactionWithWallet
impl<'de> Deserialize<'de> for SignRawTransactionWithWallet
Source§fn 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
Source§impl PartialEq for SignRawTransactionWithWallet
impl PartialEq for SignRawTransactionWithWallet
Source§fn eq(&self, other: &SignRawTransactionWithWallet) -> bool
fn eq(&self, other: &SignRawTransactionWithWallet) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SignRawTransactionWithWallet
Auto Trait Implementations§
impl Freeze for SignRawTransactionWithWallet
impl RefUnwindSafe for SignRawTransactionWithWallet
impl Send for SignRawTransactionWithWallet
impl Sync for SignRawTransactionWithWallet
impl Unpin for SignRawTransactionWithWallet
impl UnwindSafe for SignRawTransactionWithWallet
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