trading-ig 0.1.0

Async Rust client for the IG Markets REST and Lightstreamer streaming APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared types used across multiple domain modules.
//!
//! Domain-specific request/response structs live with their domain
//! (`accounts/models.rs`, `markets/models.rs`, …). Anything reused by two or
//! more domains belongs here.

pub mod common;

pub use common::{
    Currency, DealId, DealReference, Direction, Epic, InstrumentType, MarketSnapshot, MarketStatus,
    OrderType, TimeInForce,
};