patisson-binance-sdk 0.1.8

Unofficial Rust SDK for the Binance exchange API
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::Serialize;

/// Margin user data streams are server-push only: the client establishes the
/// connection with `listenKey` in the URL path and never sends application
/// messages. This empty enum encodes that at the type level — any
/// `Command::Send` call against a margin stream is unrepresentable.
///
/// Keep-alive is performed out-of-band via REST
/// (`PUT /sapi/v1/userDataStream`), not over the WebSocket.
#[derive(Serialize, Debug)]
pub enum OutgoingMessage {}