pub struct Drops {
pub base_fee: String,
pub median_fee: String,
pub minimum_fee: String,
pub open_ledger_fee: String,
}
Expand description
Various information about the transaction cost (the Fee field of a transaction), in drops of XRP.
Fields§
§base_fee: String
The transaction cost required for a reference transaction to be included in a ledger under minimum load, represented in drops of XRP.
median_fee: String
An approximation of the median transaction cost among transactions included in the previous validated ledger, represented in drops of XRP.
minimum_fee: String
The minimum transaction cost for a reference transaction to be queued for a later ledger, represented in drops of XRP. If greater than base_fee, the transaction queue is full.
open_ledger_fee: String
The minimum transaction cost that a reference transaction must pay to be included in the current open ledger, represented in drops of XRP.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Drops
impl<'de> Deserialize<'de> for Drops
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Drops, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Drops, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Drops
impl RefUnwindSafe for Drops
impl Send for Drops
impl Sync for Drops
impl Unpin for Drops
impl UnwindSafe for Drops
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