binance-standard-sdk 0.1.1

Binance SDK, A wrapper for the Binance API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::Deserialize;

use crate::types::{other::RateLimit, trade::Symbol};

/// binance info
#[derive(Debug, Clone, Deserialize)]
pub struct BinanceInfo {
    pub timezone: String,
    pub server_time: u64,
    pub rate_limits: Vec<RateLimit>,
    pub exchange_filters: Vec<serde_json::Value>,
    pub symbols: Vec<Symbol>,
}