pub struct SignRawTransactionWithKeyResponse {
pub complete: bool,
pub errors: Option<Value>,
pub hex: String,
}Expand description
Response for the SignRawTransactionWithKey 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 SignRawTransactionWithKeyResponse
impl Clone for SignRawTransactionWithKeyResponse
Source§fn clone(&self) -> SignRawTransactionWithKeyResponse
fn clone(&self) -> SignRawTransactionWithKeyResponse
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 SignRawTransactionWithKeyResponse
impl<'de> Deserialize<'de> for SignRawTransactionWithKeyResponse
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 SignRawTransactionWithKeyResponse
impl PartialEq for SignRawTransactionWithKeyResponse
Source§fn eq(&self, other: &SignRawTransactionWithKeyResponse) -> bool
fn eq(&self, other: &SignRawTransactionWithKeyResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SignRawTransactionWithKeyResponse
Auto Trait Implementations§
impl Freeze for SignRawTransactionWithKeyResponse
impl RefUnwindSafe for SignRawTransactionWithKeyResponse
impl Send for SignRawTransactionWithKeyResponse
impl Sync for SignRawTransactionWithKeyResponse
impl Unpin for SignRawTransactionWithKeyResponse
impl UnwindSafe for SignRawTransactionWithKeyResponse
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