Struct bitbox_api::btc::PrevTxInput
source · pub struct PrevTxInput {
pub prev_out_hash: Vec<u8>,
pub prev_out_index: u32,
pub signature_script: Vec<u8>,
pub sequence: u32,
}
Fields§
§prev_out_hash: Vec<u8>
§prev_out_index: u32
§signature_script: Vec<u8>
§sequence: u32
Trait Implementations§
source§impl Clone for PrevTxInput
impl Clone for PrevTxInput
source§fn clone(&self) -> PrevTxInput
fn clone(&self) -> PrevTxInput
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 PrevTxInput
impl Debug for PrevTxInput
source§impl From<&TxIn> for PrevTxInput
impl From<&TxIn> for PrevTxInput
source§impl PartialEq<PrevTxInput> for PrevTxInput
impl PartialEq<PrevTxInput> for PrevTxInput
source§fn eq(&self, other: &PrevTxInput) -> bool
fn eq(&self, other: &PrevTxInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PrevTxInput
Auto Trait Implementations§
impl RefUnwindSafe for PrevTxInput
impl Send for PrevTxInput
impl Sync for PrevTxInput
impl Unpin for PrevTxInput
impl UnwindSafe for PrevTxInput
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