Struct stellar_client::endpoint::payment::All[][src]

pub struct All { /* fields omitted */ }

This endpoint represents all payment operations that are part of validated transactions. The endpoint will return all payments and accepts query params for a cursor, order, and limit.

https://www.stellar.org/developers/horizon/reference/endpoints/payments-all.html

Example

use stellar_client::sync::Client;
use stellar_client::endpoint::payment;

let client      = Client::horizon_test().unwrap();
let endpoint    = payment::All::default();
let records     = client.request(endpoint).unwrap();

Trait Implementations

impl Debug for All
[src]

Formats the value using the given formatter. Read more

impl Default for All
[src]

Returns the "default value" for a type. Read more

impl Clone for All
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Cursor for All
[src]

Sets a cursor on the struct and returns an owned version.

Returns the cursor that has been set, if it has been set.

impl Limit for All
[src]

Sets a limit on the struct and returns an owned version.

Returns the limit or None.

impl Order for All
[src]

Sets the order on the struct and returns an owned version.

Returns the order that has been set, if it has been set.

impl IntoRequest for All
[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 All

impl Sync for All