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.
//! Builder patterns for request and subscription creation
//!//! This module provides unified builder patterns that work with both sync and async modes.
#[cfg(feature ="sync")]pubmodsync;#[cfg(feature ="async")]pubmodr#async;modcommon;// Re-export builders based on feature selection
#[cfg(feature ="sync")]pubmodblocking{pub(crate)usesuper::sync::{ClientRequestBuilders, SubscriptionBuilderExt};}