pub struct FeeResponse {
    pub current_ledger_size: String,
    pub current_queue_size: String,
    pub drops: Drops,
    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.

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

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.