rusftx 0.4.0

Rust bindings for the FTX REST and Websocket API
Documentation
1
2
3
4
5
6
7
8
9
use crate::rest::model::coin::Method;

#[derive(Debug, serde::Serialize, serde::Deserialize)]
pub struct Address {
    pub address: String,
    pub tag: Option<String>,
    pub coin: Option<String>,
    pub method: Option<Method>,
}