Struct xrpl_api::TransactionEntryResponse
source · pub struct TransactionEntryResponse {
pub ledger_index: u32,
pub ledger_hash: Option<String>,
pub metadata: Meta,
pub tx_json: Transaction,
}
Fields§
§ledger_index: u32
The ledger index of the ledger version the transaction was found in; this is the same as the one from the request.
ledger_hash: Option<String>
The identifying hash of the ledger version the transaction was found in; this is the same as the one from the request.
metadata: Meta
§tx_json: Transaction
Trait Implementations§
source§impl Debug for TransactionEntryResponse
impl Debug for TransactionEntryResponse
source§impl<'de> Deserialize<'de> for TransactionEntryResponse
impl<'de> Deserialize<'de> for TransactionEntryResponse
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 TransactionEntryResponse
impl RefUnwindSafe for TransactionEntryResponse
impl Send for TransactionEntryResponse
impl Sync for TransactionEntryResponse
impl Unpin for TransactionEntryResponse
impl UnwindSafe for TransactionEntryResponse
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