Struct kraapi::api::private::ledger_info::KILedgerInfo[][src]

pub struct KILedgerInfo { /* fields omitted */ }

Request builder for the Get Ledgers Info endpoint

Implementations

impl KILedgerInfo[src]

pub fn build() -> Self[src]

Constructor returning a KrakenInput builder for the get ledgers info endpoint.

pub fn clear_asset_list(self) -> Self[src]

An asset is not required for the get ledgers info endpoint. This method clears a currently populated asset list. Useful for templating

pub fn with_asset(self, asset: KAsset) -> Self[src]

Update the list of assets to query info for

pub fn with_asset_list<T>(self, assets: T) -> Self where
    T: IntoIterator<Item = KAsset>, 
[src]

Update the list of assets to query info for

pub fn with_trade_type(self, ledgertype: LedgerType) -> Self[src]

Type of Ledger Type to retrieve

pub fn starting_timestamp(self, timestamp: u64) -> Self[src]

Starting Unix timestamp to filter output by. Exclusive

pub fn ending_timestamp(self, timestamp: u64) -> Self[src]

Ending Unix timestamp to filter output by. Inclusive

pub fn starting_legid(self, legid: String) -> Self[src]

Starting ledger ID to filter output by. Exclusive

pub fn ending_legid(self, legid: String) -> Self[src]

Ending ledger ID to filter output by. Inclusive

pub fn with_offset(self, offset: u64) -> Self[src]

Result offset

Trait Implementations

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.