longport_wscli/
lib.rs

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