binance-async 0.3.0

Rust Library for the Binance API (Async)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::models::Product;

use reqwest::Method;

crate::define_request! {
    Name => Ping;
    Product => Product::Spot;
    Endpoint => "/api/v3/ping";
    Method => Method::GET;
    Signed => false;
    Request => {};
    Response => {};
}