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
sourceimpl Clone for GetMempoolEntryResultFees
impl Clone for GetMempoolEntryResultFees
sourcefn clone(&self) -> GetMempoolEntryResultFees
fn clone(&self) -> GetMempoolEntryResultFees
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GetMempoolEntryResultFees
impl Debug for GetMempoolEntryResultFees
sourceimpl<'de> Deserialize<'de> for GetMempoolEntryResultFees
impl<'de> Deserialize<'de> for GetMempoolEntryResultFees
sourcefn 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
sourceimpl PartialEq<GetMempoolEntryResultFees> for GetMempoolEntryResultFees
impl PartialEq<GetMempoolEntryResultFees> for GetMempoolEntryResultFees
sourcefn 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 ==
. Read more
sourceimpl Serialize for GetMempoolEntryResultFees
impl Serialize for GetMempoolEntryResultFees
impl Eq for GetMempoolEntryResultFees
impl StructuralEq for GetMempoolEntryResultFees
impl StructuralPartialEq for GetMempoolEntryResultFees
Auto Trait Implementations
impl RefUnwindSafe for GetMempoolEntryResultFees
impl Send for GetMempoolEntryResultFees
impl Sync for GetMempoolEntryResultFees
impl Unpin for GetMempoolEntryResultFees
impl UnwindSafe for GetMempoolEntryResultFees
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more