pub struct TxHistory {
pub txid: String,
pub height: i64,
pub fee: Option<u64>,
}Expand description
Transaction history entry.
Fields§
§txid: StringTransaction ID (hex)
height: i64Block height (-1 = unconfirmed in mempool)
fee: Option<u64>Transaction fee in satoshis (optional)
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TxHistory
impl<'de> Deserialize<'de> for TxHistory
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
impl Eq for TxHistory
impl StructuralPartialEq for TxHistory
Auto Trait Implementations§
impl Freeze for TxHistory
impl RefUnwindSafe for TxHistory
impl Send for TxHistory
impl Sync for TxHistory
impl Unpin for TxHistory
impl UnwindSafe for TxHistory
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