pub enum LedgerUpgrade {
LEDGER_UPGRADE_VERSION(uint32),
LEDGER_UPGRADE_BASE_FEE(uint32),
LEDGER_UPGRADE_MAX_TX_SET_SIZE(uint32),
LEDGER_UPGRADE_BASE_RESERVE(uint32),
}
Variants§
LEDGER_UPGRADE_VERSION(uint32)
LEDGER_UPGRADE_BASE_FEE(uint32)
LEDGER_UPGRADE_MAX_TX_SET_SIZE(uint32)
LEDGER_UPGRADE_BASE_RESERVE(uint32)
Trait Implementations§
Source§impl Clone for LedgerUpgrade
impl Clone for LedgerUpgrade
Source§fn clone(&self) -> LedgerUpgrade
fn clone(&self) -> LedgerUpgrade
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LedgerUpgrade
impl Debug for LedgerUpgrade
Source§impl<Out: Write> Pack<Out> for LedgerUpgrade
impl<Out: Write> Pack<Out> for LedgerUpgrade
Source§impl PartialEq for LedgerUpgrade
impl PartialEq for LedgerUpgrade
Source§impl<In: Read> Unpack<In> for LedgerUpgrade
impl<In: Read> Unpack<In> for LedgerUpgrade
impl Copy for LedgerUpgrade
impl Eq for LedgerUpgrade
impl StructuralPartialEq for LedgerUpgrade
Auto Trait Implementations§
impl Freeze for LedgerUpgrade
impl RefUnwindSafe for LedgerUpgrade
impl Send for LedgerUpgrade
impl Sync for LedgerUpgrade
impl Unpin for LedgerUpgrade
impl UnwindSafe for LedgerUpgrade
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