rusftx 0.4.0

Rust bindings for the FTX REST and Websocket API
Documentation
1
2
3
4
5
6
7
8
#[derive(Debug)]
pub enum RestError {
    RateLimit,
    Http(reqwest::Error),
    Serde(serde_json::Error),
    Urlencode(serde_urlencoded::ser::Error),
    Other(String),
}