pub struct GetTransactionsResponse {
pub latest_ledger: u32,
pub latest_ledger_close_timestamp: i64,
pub oldest_ledger: u32,
pub oldest_ledger_close_timestamp: i64,
pub cursor: String,
pub transactions: Vec<TransactionInfo>,
}
Expand description
Response to get_transactions
Fields§
§latest_ledger: u32
The sequence number of the latest ledger known to Stellar RPC at the time it handled the request.
latest_ledger_close_timestamp: i64
The unix timestamp of the close time of the latest ledger known to Stellar RPC at the time it handled the request.
oldest_ledger: u32
The sequence number of the oldest ledger ingested by Stellar RPC at the time it handled the request.
oldest_ledger_close_timestamp: i64
The unix timestamp of the close time of the oldest ledger ingested by Stellar RPC at the time it handled the request.
cursor: String
Cursor reference
transactions: Vec<TransactionInfo>
The transactions found
Trait Implementations§
Source§impl Debug for GetTransactionsResponse
impl Debug for GetTransactionsResponse
Source§impl<'de> Deserialize<'de> for GetTransactionsResponse
impl<'de> Deserialize<'de> for GetTransactionsResponse
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 Freeze for GetTransactionsResponse
impl RefUnwindSafe for GetTransactionsResponse
impl Send for GetTransactionsResponse
impl Sync for GetTransactionsResponse
impl Unpin for GetTransactionsResponse
impl UnwindSafe for GetTransactionsResponse
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