pub struct MempoolRecentTx {
pub txid: Txid,
pub fee: u64,
pub vsize: usize,
pub value: u64,
}Expand description
A Transaction that recently entered the mempool.
Fields§
§txid: TxidThe Transaction’s ID, as a Txid.
fee: u64The Amount of fees paid by the transaction, in satoshis.
vsize: usizeThe Transaction’s size, in virtual bytes.
value: u64Combined Amount of the Transaction, in satoshis.
Trait Implementations§
Source§impl Clone for MempoolRecentTx
impl Clone for MempoolRecentTx
Source§fn clone(&self) -> MempoolRecentTx
fn clone(&self) -> MempoolRecentTx
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MempoolRecentTx
impl Debug for MempoolRecentTx
Source§impl<'de> Deserialize<'de> for MempoolRecentTx
impl<'de> Deserialize<'de> for MempoolRecentTx
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
Source§impl PartialEq for MempoolRecentTx
impl PartialEq for MempoolRecentTx
impl Eq for MempoolRecentTx
impl StructuralPartialEq for MempoolRecentTx
Auto Trait Implementations§
impl Freeze for MempoolRecentTx
impl RefUnwindSafe for MempoolRecentTx
impl Send for MempoolRecentTx
impl Sync for MempoolRecentTx
impl Unpin for MempoolRecentTx
impl UnwindSafe for MempoolRecentTx
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