Struct stellar_client::endpoint::transaction::Details[][src]

pub struct Details { /* fields omitted */ }

Represents the details for a singular transaction.

https://www.stellar.org/developers/horizon/reference/endpoints/transactions-single.html

Example

use stellar_client::sync::Client;
use stellar_client::endpoint::{transaction, Limit};

let client   = Client::horizon_test().unwrap();
let endpoint = transaction::Details::new(hash);
let txn      = client.request(endpoint).unwrap();

Methods

impl Details
[src]

Returns a new end point for transaction details. Hand this to the client in order to request the details for a specific transaction

Trait Implementations

impl Debug for Details
[src]

Formats the value using the given formatter. Read more

impl IntoRequest for Details
[src]

The deserializable type that is expected to come back from the stellar server.

The request body to be sent to stellar. Generally this is just a () unit. Converts the implementing struct into an http request. Read more

Auto Trait Implementations

impl Send for Details

impl Sync for Details