[][src]Struct stellar_base::xdr::LedgerHeader

pub struct LedgerHeader {
    pub ledger_version: Uint32,
    pub previous_ledger_hash: Hash,
    pub scp_value: StellarValue,
    pub tx_set_result_hash: Hash,
    pub bucket_list_hash: Hash,
    pub ledger_seq: Uint32,
    pub total_coins: Int64,
    pub fee_pool: Int64,
    pub inflation_seq: Uint32,
    pub id_pool: Uint64,
    pub base_fee: Uint32,
    pub base_reserve: Uint32,
    pub max_tx_set_size: Uint32,
    pub skip_list: Vec<Hash>,
    pub ext: LedgerHeaderExt,
}

Fields

ledger_version: Uint32previous_ledger_hash: Hashscp_value: StellarValuetx_set_result_hash: Hashbucket_list_hash: Hashledger_seq: Uint32total_coins: Int64fee_pool: Int64inflation_seq: Uint32id_pool: Uint64base_fee: Uint32base_reserve: Uint32max_tx_set_size: Uint32skip_list: Vec<Hash>ext: LedgerHeaderExt

Trait Implementations

impl Debug for LedgerHeader[src]

impl XDRIn for LedgerHeader[src]

impl XDROut for LedgerHeader[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.