pub struct PrevTx {
pub version: u32,
pub inputs: Vec<PrevTxInput>,
pub outputs: Vec<PrevTxOutput>,
pub locktime: u32,
}
Fields§
§version: u32
§inputs: Vec<PrevTxInput>
§outputs: Vec<PrevTxOutput>
§locktime: u32
Trait Implementations§
Source§impl From<&Transaction> for PrevTx
impl From<&Transaction> for PrevTx
Source§fn from(value: &Transaction) -> Self
fn from(value: &Transaction) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for PrevTx
Auto Trait Implementations§
impl Freeze for PrevTx
impl RefUnwindSafe for PrevTx
impl Send for PrevTx
impl Sync for PrevTx
impl Unpin for PrevTx
impl UnwindSafe for PrevTx
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