crypto-rest-client 1.0.1

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 mexc_spot;
pub(crate) mod mexc_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 => mexc_spot::MexcSpotRestClient::fetch_l2_snapshot,
        MarketType::InverseSwap | MarketType::LinearSwap => {
            mexc_swap::MexcSwapRestClient::fetch_l2_snapshot
        }
        _ => panic!("MEXC unknown market_type: {market_type}"),
    };

    func(symbol)
}