pub struct GetFeeStatsResponse {
pub soroban_inclusion_fee: FeeDistribution,
pub inclusion_fee: FeeDistribution,
pub latest_ledger: u32,
}Expand description
Response to get_fee_stats
Fields§
§soroban_inclusion_fee: FeeDistributionInclusion fee distribution statistics for Soroban transactions
inclusion_fee: FeeDistributionFee distribution statistics for Stellar (i.e. non-Soroban) transactions. Statistics are normalized per operation.
latest_ledger: u32The sequence number of the latest ledger known to Stellar RPC at the time it handled the request.
Trait Implementations§
Source§impl Debug for GetFeeStatsResponse
impl Debug for GetFeeStatsResponse
Source§impl<'de> Deserialize<'de> for GetFeeStatsResponse
impl<'de> Deserialize<'de> for GetFeeStatsResponse
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 GetFeeStatsResponse
impl RefUnwindSafe for GetFeeStatsResponse
impl Send for GetFeeStatsResponse
impl Sync for GetFeeStatsResponse
impl Unpin for GetFeeStatsResponse
impl UnwindSafe for GetFeeStatsResponse
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