pub struct TxInput {
pub txid: Option<String>,
pub vout: Option<u32>,
pub script_sig: Option<ScriptSig>,
pub sequence: Option<u64>,
pub coinbase: Option<String>,
}Fields§
§txid: Option<String>§vout: Option<u32>§script_sig: Option<ScriptSig>§sequence: Option<u64>§coinbase: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for TxInput
impl<'de> Deserialize<'de> for TxInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TxInput
impl RefUnwindSafe for TxInput
impl Send for TxInput
impl Sync for TxInput
impl Unpin for TxInput
impl UnsafeUnpin for TxInput
impl UnwindSafe for TxInput
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