pub struct TransactionFormat {
pub txid: String,
pub version: u32,
pub locktime: u32,
pub size: u32,
pub weight: u32,
pub fee: u32,
pub vin: Vec<VinFormat>,
pub vout: Vec<VoutFormat>,
pub status: TxStatusFormat,
}Fields§
§txid: String§version: u32§locktime: u32§size: u32§weight: u32§fee: u32§vin: Vec<VinFormat>§vout: Vec<VoutFormat>§status: TxStatusFormatTrait Implementations§
Source§impl Debug for TransactionFormat
impl Debug for TransactionFormat
Source§impl<'de> Deserialize<'de> for TransactionFormat
impl<'de> Deserialize<'de> for TransactionFormat
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 TransactionFormat
impl RefUnwindSafe for TransactionFormat
impl Send for TransactionFormat
impl Sync for TransactionFormat
impl Unpin for TransactionFormat
impl UnwindSafe for TransactionFormat
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