ib_tws_core 0.2.0

Core utilities for interacting with Interactive Broker's TWS API
Documentation
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;