Struct xrpl_api::LedgerResponse
source · pub struct LedgerResponse<TransactionType> {
pub ledger: Ledger<TransactionType>,
pub ledger_spec: ReturnLedgerSpec,
}
Fields§
§ledger: Ledger<TransactionType>
(Omitted unless requested with the queue parameter) Array of objects describing queued transactions, in the same order as the queue. If the request specified expand as true, members contain full representations of the transactions, in either JSON or binary depending on whether the request specified binary as true. The complete header data of this ledger.
ledger_spec: ReturnLedgerSpec
Trait Implementations§
source§impl<TransactionType: Debug> Debug for LedgerResponse<TransactionType>
impl<TransactionType: Debug> Debug for LedgerResponse<TransactionType>
source§impl<'de, TransactionType> Deserialize<'de> for LedgerResponse<TransactionType>where
TransactionType: Deserialize<'de>,
impl<'de, TransactionType> Deserialize<'de> for LedgerResponse<TransactionType>where
TransactionType: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<TransactionType> Freeze for LedgerResponse<TransactionType>
impl<TransactionType> RefUnwindSafe for LedgerResponse<TransactionType>where
TransactionType: RefUnwindSafe,
impl<TransactionType> Send for LedgerResponse<TransactionType>where
TransactionType: Send,
impl<TransactionType> Sync for LedgerResponse<TransactionType>where
TransactionType: Sync,
impl<TransactionType> Unpin for LedgerResponse<TransactionType>where
TransactionType: Unpin,
impl<TransactionType> UnwindSafe for LedgerResponse<TransactionType>where
TransactionType: UnwindSafe,
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