Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Module: binance/mod

Source: binance/mod.rs

Authenticated Binance exchange implementation. Provides REST order placement, account queries, and WebSocket-backed market data streaming via the [Binance] struct.

Structs

pub struct Binance

#![allow(unused)]
fn main() {
pub struct Binance {
    api_key: String,
    secret_key: String,
    testnet: bool,
    client: OnceLock < ws :: WsClient >,
    filters: OnceLock < filters :: BinanceFilters >,
};
}