kucoin 0.7.4

A robust and asynchronous Rust client for the KuCoin exchange API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod deposit;
pub mod spot;
pub mod sup_account;
pub mod transfer;
pub mod withdraw;

use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct KuCoinResponse<T> {
    pub code: String,
    pub msg: Option<String>, // Error message
    pub data: Option<T>,
}