ibapi 3.0.0

A Rust implementation of the Interactive Brokers TWS API, providing a reliable and user friendly interface for TWS and IB Gateway. Designed with a focus on simplicity and performance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub(super) mod constants;
pub(super) mod decoders;
pub(crate) mod encoders;
pub(super) mod stream_decoders;

#[cfg(test)]
pub(super) mod test_data;

#[cfg(test)]
pub(super) mod test_tables;

// Narrow re-export: only the handshake-time message dispatcher escapes the
// `accounts::common` boundary. The rest of `decoders` stays internal.
pub(crate) use decoders::decode_account_update_message;