pub struct VinFormat {
pub txid: String,
pub vout: u32,
pub is_coinbase: bool,
pub scriptsig: String,
pub scriptsig_asm: String,
pub sequence: u32,
pub prevout: Option<VoutFormat>,
}Fields§
§txid: String§vout: u32§is_coinbase: bool§scriptsig: String§scriptsig_asm: String§sequence: u32§prevout: Option<VoutFormat>Trait Implementations§
Source§impl<'de> Deserialize<'de> for VinFormat
impl<'de> Deserialize<'de> for VinFormat
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 VinFormat
impl RefUnwindSafe for VinFormat
impl Send for VinFormat
impl Sync for VinFormat
impl Unpin for VinFormat
impl UnwindSafe for VinFormat
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