ibapi 2.12.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
#[allow(dead_code)]
pub fn assert_send_and_sync<T: Send + Sync>() {}

#[test]
fn encodes_max_f64_as_tws_unset_double() {
    use crate::ToField;

    assert_eq!(f64::MAX.to_field(), "1.7976931348623157E308");
}