pub struct MempoolItem {
pub spend_bundle_name: HashHex,
pub cost: u64,
pub fee: Amount,
pub is_cpfp: bool,
}Expand description
One entry in the mempool summary.
Fields§
§spend_bundle_name: HashHexSpend-bundle identifier (hash).
cost: u64CLVM cost for this bundle.
fee: AmountFee paid by this bundle, in mojos.
is_cpfp: boolWhether this bundle is a CPFP ancestor / descendant.
Trait Implementations§
Source§impl Clone for MempoolItem
impl Clone for MempoolItem
Source§fn clone(&self) -> MempoolItem
fn clone(&self) -> MempoolItem
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 MempoolItem
impl Debug for MempoolItem
Source§impl<'de> Deserialize<'de> for MempoolItem
impl<'de> Deserialize<'de> for MempoolItem
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 MempoolItem
impl RefUnwindSafe for MempoolItem
impl Send for MempoolItem
impl Sync for MempoolItem
impl Unpin for MempoolItem
impl UnsafeUnpin for MempoolItem
impl UnwindSafe for MempoolItem
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