binance-standard-sdk 0.1.1

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

/// price info data
#[derive(Debug, Clone, Deserialize)]
pub struct PriceData {
    pub symbol: String,
    pub price: String,
    pub time: Option<u64>,
}