crypto-rest-client 0.6.8

An RESTful client for all cryptocurrency exchanges.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub(crate) mod mxc_spot;
pub(crate) mod mxc_swap;

use crate::error::Result;
use crypto_market_type::MarketType;

pub(crate) fn fetch_l2_snapshot(market_type: MarketType, symbol: &str) -> Result<String> {
    let func = match market_type {
        MarketType::Spot => mxc_spot::MxcSpotRestClient::fetch_l2_snapshot,
        MarketType::InverseSwap | MarketType::LinearSwap => {
            mxc_swap::MxcSwapRestClient::fetch_l2_snapshot
        }
        _ => panic!("MXC unknown market_type: {}", market_type),
    };

    func(symbol)
}