longbridge_wscli/
lib.rs

1//! Longbridge OpenAPI Websocket client
2
3#![forbid(unsafe_code)]
4#![deny(private_in_public, unreachable_pub)]
5#![cfg_attr(docsrs, feature(doc_cfg))]
6#![warn(missing_docs)]
7
8mod client;
9mod codec;
10mod error;
11mod event;
12
13pub use client::{CodecType, Platform, ProtocolVersion, RateLimit, WsClient, WsSession};
14pub use error::{WsClientError, WsClientResult, WsCloseReason, WsResponseErrorDetail};
15pub use event::WsEvent;