Struct lib::kraken::ResultAssetPairs[][src]

pub struct ResultAssetPairs {
    pub aclass_base: String,
    pub altname: String,
    pub base: String,
    pub aclass_quote: String,
    pub quote: String,
    pub lot: String,
    pub pair_decimals: i64,
    pub lot_decimals: i64,
    pub lot_multiplier: i64,
    pub leverage_buy: Vec<i64>,
    pub leverage_sell: Vec<i64>,
    pub fees: Vec<Vec<f32>>,
    pub fees_maker: Option<Vec<Vec<f32>>>,
    pub fee_volume_currency: String,
    pub margin_call: i64,
    pub margin_stop: i64,
}

Fields

Trait Implementations

impl Debug for ResultAssetPairs
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ResultAssetPairs
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations