pub struct SignRawTransactionInput {
pub txid: Txid,
pub vout: u32,
pub script_pub_key: Script,
pub redeem_script: Option<Script>,
pub amount: Option<Amount>,
}
Fields
txid: Txid
vout: u32
script_pub_key: Script
redeem_script: Option<Script>
amount: Option<Amount>
Trait Implementations
sourceimpl Clone for SignRawTransactionInput
impl Clone for SignRawTransactionInput
sourcefn clone(&self) -> SignRawTransactionInput
fn clone(&self) -> SignRawTransactionInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SignRawTransactionInput
impl Debug for SignRawTransactionInput
sourceimpl PartialEq<SignRawTransactionInput> for SignRawTransactionInput
impl PartialEq<SignRawTransactionInput> for SignRawTransactionInput
sourcefn 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 ==
. Read more
sourceimpl 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more