pub struct SignRawTransaction {
pub tx: Transaction,
pub complete: bool,
pub errors: Vec<SignFail>,
}
Expand description
Models the result of JSON-RPC method signrawtransaction
.
Fields§
§tx: Transaction
The raw transaction with signature(s).
complete: bool
If the transaction has a complete set of signatures.
errors: Vec<SignFail>
Script verification errors (if there are any).
Trait Implementations§
Source§impl Clone for SignRawTransaction
impl Clone for SignRawTransaction
Source§fn clone(&self) -> SignRawTransaction
fn clone(&self) -> SignRawTransaction
Returns a copy 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 SignRawTransaction
impl Debug for SignRawTransaction
Source§impl<'de> Deserialize<'de> for SignRawTransaction
impl<'de> Deserialize<'de> for SignRawTransaction
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 SignRawTransaction
impl PartialEq for SignRawTransaction
Source§impl Serialize for SignRawTransaction
impl Serialize for SignRawTransaction
impl StructuralPartialEq for SignRawTransaction
Auto Trait Implementations§
impl Freeze for SignRawTransaction
impl RefUnwindSafe for SignRawTransaction
impl Send for SignRawTransaction
impl Sync for SignRawTransaction
impl Unpin for SignRawTransaction
impl UnwindSafe for SignRawTransaction
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