pub struct FeeDistribution {Show 16 fields
pub max: String,
pub min: String,
pub mode: String,
pub p10: String,
pub p20: String,
pub p30: String,
pub p40: String,
pub p50: String,
pub p60: String,
pub p70: String,
pub p80: String,
pub p90: String,
pub p95: String,
pub p99: String,
pub transaction_count: String,
pub ledger_count: u32,
}Expand description
Fee distribution
Fields§
§max: StringMaximum fee
min: StringMinimum fee
mode: StringFee value which occurs the most often
p10: String10th nearest-rank fee percentile
p20: String20th nearest-rank fee percentile
p30: String30th nearest-rank fee percentile
p40: String40th nearest-rank fee percentile
p50: String50th nearest-rank fee percentile
p60: String60th nearest-rank fee percentile
p70: String70th nearest-rank fee percentile
p80: String80th nearest-rank fee percentile
p90: String90th nearest-rank fee percentile
p95: String95th nearest-rank fee percentile
p99: String99th nearest-rank fee percentile
transaction_count: StringHow many transactions are part of the distribution
ledger_count: u32How many consecutive ledgers form the distribution
Trait Implementations§
Source§impl Debug for FeeDistribution
impl Debug for FeeDistribution
Source§impl<'de> Deserialize<'de> for FeeDistribution
impl<'de> Deserialize<'de> for FeeDistribution
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 FeeDistribution
impl RefUnwindSafe for FeeDistribution
impl Send for FeeDistribution
impl Sync for FeeDistribution
impl Unpin for FeeDistribution
impl UnwindSafe for FeeDistribution
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