pub struct GetMempoolEntryResultFees {
pub base: Amount,
pub modified: Amount,
pub ancestor: Amount,
pub descendant: Amount,
}
Fields§
§base: Amount
Transaction fee in BTC
modified: Amount
Transaction fee with fee deltas used for mining priority in BTC
ancestor: Amount
Modified fees (see above) of in-mempool ancestors (including this one) in BTC
descendant: Amount
Modified fees (see above) of in-mempool descendants (including this one) in BTC
Trait Implementations§
source§impl Clone for GetMempoolEntryResultFees
impl Clone for GetMempoolEntryResultFees
source§fn clone(&self) -> GetMempoolEntryResultFees
fn clone(&self) -> GetMempoolEntryResultFees
Returns a copy 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 GetMempoolEntryResultFees
impl Debug for GetMempoolEntryResultFees
source§impl<'de> Deserialize<'de> for GetMempoolEntryResultFees
impl<'de> Deserialize<'de> for GetMempoolEntryResultFees
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 GetMempoolEntryResultFees
impl PartialEq for GetMempoolEntryResultFees
source§fn eq(&self, other: &GetMempoolEntryResultFees) -> bool
fn eq(&self, other: &GetMempoolEntryResultFees) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for GetMempoolEntryResultFees
impl StructuralPartialEq for GetMempoolEntryResultFees
Auto Trait Implementations§
impl Freeze for GetMempoolEntryResultFees
impl RefUnwindSafe for GetMempoolEntryResultFees
impl Send for GetMempoolEntryResultFees
impl Sync for GetMempoolEntryResultFees
impl Unpin for GetMempoolEntryResultFees
impl UnwindSafe for GetMempoolEntryResultFees
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