pub struct FeeResponse {
pub current_ledger_size: String,
pub current_queue_size: String,
pub drops: Drops,
pub expected_ledger_size: String,
pub ledger_current_index: u32,
pub levels: Levels,
pub max_queue_size: String,
}
Fields§
§current_ledger_size: String
Number of transactions provisionally included in the in-progress ledger.
current_queue_size: String
Number of transactions currently queued for the next ledger.
drops: Drops
Various information about the transaction cost (the Fee field of a transaction), in drops of XRP.
expected_ledger_size: String
The approximate number of transactions expected to be included in the current ledger. This is based on the number of transactions in the previous ledger.
ledger_current_index: u32
The Ledger Index of the current open ledger these stats describe.
levels: Levels
Various information about the transaction cost, in fee levels. The ratio in fee levels applies to any transaction relative to the minimum cost of that particular transaction.
max_queue_size: String
The maximum number of transactions that the transaction queue can currently hold.
Trait Implementations§
Source§impl Debug for FeeResponse
impl Debug for FeeResponse
Source§impl<'de> Deserialize<'de> for FeeResponse
impl<'de> Deserialize<'de> for FeeResponse
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 FeeResponse
impl RefUnwindSafe for FeeResponse
impl Send for FeeResponse
impl Sync for FeeResponse
impl Unpin for FeeResponse
impl UnwindSafe for FeeResponse
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