pub struct SignRawTransactionInput {
    pub txid: Txid,
    pub vout: u32,
    pub script_pub_key: ScriptBuf,
    pub redeem_script: Option<ScriptBuf>,
    pub amount: Option<Amount>,
}Fields§
§txid: Txid§vout: u32§script_pub_key: ScriptBuf§redeem_script: Option<ScriptBuf>§amount: Option<Amount>Trait Implementations§
source§impl Clone for SignRawTransactionInput
 
impl Clone for SignRawTransactionInput
source§fn clone(&self) -> SignRawTransactionInput
 
fn clone(&self) -> SignRawTransactionInput
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 SignRawTransactionInput
 
impl Debug for SignRawTransactionInput
source§impl PartialEq for SignRawTransactionInput
 
impl PartialEq for SignRawTransactionInput
source§fn eq(&self, other: &SignRawTransactionInput) -> bool
 
fn eq(&self, other: &SignRawTransactionInput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for SignRawTransactionInput
 
impl Serialize for SignRawTransactionInput
impl StructuralPartialEq for SignRawTransactionInput
Auto Trait Implementations§
impl RefUnwindSafe for SignRawTransactionInput
impl Send for SignRawTransactionInput
impl Sync for SignRawTransactionInput
impl Unpin for SignRawTransactionInput
impl UnwindSafe for SignRawTransactionInput
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