[][src]Struct electrscash::mempool::Tracker

pub struct Tracker { /* fields omitted */ }

Methods

impl Tracker[src]

pub fn new(metrics: &Metrics) -> Tracker[src]

pub fn get_txn(&self, txid: &Sha256dHash) -> Option<Transaction>[src]

pub fn fee_histogram(&self) -> &Vec<(f32, u32)>[src]

Returns vector of (fee_rate, vsize) pairs, where fee_{n-1} > fee_n and vsize_n is the total virtual size of mempool transactions with fee in the bin [fee_{n-1}, fee_n]. Note: fee_{-1} is implied to be infinite.

pub fn index(&self) -> &dyn ReadStore[src]

pub fn update(&mut self, daemon: &Daemon) -> Result<()>[src]

Auto Trait Implementations

impl Send for Tracker

impl Sync for Tracker

impl Unpin for Tracker

impl !UnwindSafe for Tracker

impl !RefUnwindSafe for Tracker

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Configure for T where
    T: ?Sized
[src]