pub struct SignRawTransactionWithWalletResponse {
pub complete: bool,
pub errors: Option<Value>,
pub hex: String,
}Expand description
Response for the SignRawTransactionWithWallet RPC method
Fields§
§complete: boolIf the transaction has a complete set of signatures
errors: Option<Value>Script verification errors (if there are any)
hex: StringThe hex-encoded raw transaction with signature(s)
Trait Implementations§
Source§impl Clone for SignRawTransactionWithWalletResponse
impl Clone for SignRawTransactionWithWalletResponse
Source§fn clone(&self) -> SignRawTransactionWithWalletResponse
fn clone(&self) -> SignRawTransactionWithWalletResponse
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<'de> Deserialize<'de> for SignRawTransactionWithWalletResponse
impl<'de> Deserialize<'de> for SignRawTransactionWithWalletResponse
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 SignRawTransactionWithWalletResponse
impl PartialEq for SignRawTransactionWithWalletResponse
Source§fn eq(&self, other: &SignRawTransactionWithWalletResponse) -> bool
fn eq(&self, other: &SignRawTransactionWithWalletResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SignRawTransactionWithWalletResponse
Auto Trait Implementations§
impl Freeze for SignRawTransactionWithWalletResponse
impl RefUnwindSafe for SignRawTransactionWithWalletResponse
impl Send for SignRawTransactionWithWalletResponse
impl Sync for SignRawTransactionWithWalletResponse
impl Unpin for SignRawTransactionWithWalletResponse
impl UnwindSafe for SignRawTransactionWithWalletResponse
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