pub struct Levels {
pub median_level: String,
pub minimum_level: String,
pub open_ledger_level: String,
pub reference_level: String,
}
Expand description
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.
Fields§
§median_level: String
The median transaction cost among transactions in the previous validated ledger, represented in fee levels.
minimum_level: String
The minimum transaction cost required to be queued for a future ledger, represented in fee levels.
open_ledger_level: String
The minimum transaction cost required to be included in the current open ledger, represented in fee levels.
reference_level: String
The equivalent of the minimum transaction cost, represented in fee levels.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Levels
impl<'de> Deserialize<'de> for Levels
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Levels, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Levels, <__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 Levels
impl RefUnwindSafe for Levels
impl Send for Levels
impl Sync for Levels
impl Unpin for Levels
impl UnwindSafe for Levels
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