1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
pub use self::request::Request;
pub use self::response::Response;

/// Decoder & Encoder Request & Response
///
mod account;
mod auth;
mod bulletins;

// TODO: Merge this with AsyncClient
#[cfg(feature = "async")]
mod commander;
#[cfg(feature = "async")]
mod dispatcher;

pub mod constants;
pub mod context;
mod contract;
mod depth_exchange;
mod display_group;
mod err_msg;
mod error;
mod execution;
mod fa;
mod family_code;
mod fundamental;
pub mod handshake;
mod head_timestamp;
mod histogram;
mod historical;
mod market;
mod market_rule;
pub mod message_codec;
mod misc;
mod news;
mod order;
mod portfolio;
mod position;
pub mod request;
mod reroute;
pub mod response;
mod scanner;
mod util;
pub mod wire;