binance-api-client 0.1.0

Async Rust client for Binance Spot REST and WebSocket APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! API response models for the Binance API.
//!
//! This module contains strongly-typed structs for all API responses
//! and request payloads.

pub mod account;
pub mod margin;
pub mod market;
pub mod wallet;
pub mod websocket;

// Re-export commonly used types
pub use account::*;
pub use margin::*;
pub use market::*;
pub use wallet::*;
pub use websocket::*;