Skip to main content

ig_client/application/interfaces/
mod.rs

1/// Account service interface
2pub mod account;
3/// Indicative costs and charges service interface
4pub mod costs;
5/// Listener interface for streaming data
6#[cfg(feature = "streaming")]
7#[cfg_attr(docsrs, doc(cfg(feature = "streaming")))]
8pub mod listener;
9/// Market service interface
10pub mod market;
11/// Operations/application service interface
12pub mod operations;
13/// Order service interface
14pub mod order;
15/// Client sentiment service interface
16pub mod sentiment;
17/// Watchlist service interface
18pub mod watchlist;