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 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 Debug for PrevTxInput
impl Debug for PrevTxInput
Source§impl From<&TxIn> for PrevTxInput
impl From<&TxIn> for PrevTxInput
Source§impl PartialEq for PrevTxInput
impl PartialEq for PrevTxInput
impl StructuralPartialEq for PrevTxInput
Auto Trait Implementations§
impl Freeze for PrevTxInput
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