pub struct MempoolInfoRes {
pub mempoolminfee: f64,
pub minrelaytxfee: f64,
pub incrementalrelayfee: f64,
}Expand description
Response to a mempool_get_info request.
Contains information about the current state of the mempool.
Fields§
§mempoolminfee: f64Dynamic minimum fee rate in BTC/kvB for tx to be accepted given current conditions.
The maximum of minrelaytxfee and minimum mempool fee.
minrelaytxfee: f64Static operator-configurable minimum relay fee for transactions, in BTC/kvB.
incrementalrelayfee: f64Static operator-configurable minimum fee rate increment for mempool limiting or replacement, in BTC/kvB.
Trait Implementations§
Source§impl Clone for MempoolInfoRes
impl Clone for MempoolInfoRes
Source§fn clone(&self) -> MempoolInfoRes
fn clone(&self) -> MempoolInfoRes
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MempoolInfoRes
impl Debug for MempoolInfoRes
Source§impl<'de> Deserialize<'de> for MempoolInfoRes
impl<'de> Deserialize<'de> for MempoolInfoRes
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 MempoolInfoRes
impl RefUnwindSafe for MempoolInfoRes
impl Send for MempoolInfoRes
impl Sync for MempoolInfoRes
impl Unpin for MempoolInfoRes
impl UnsafeUnpin for MempoolInfoRes
impl UnwindSafe for MempoolInfoRes
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