openlimits-exchange 0.3.0

The exchange traits of OpenLimits.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This module cointains the traits that are used in the openlimits-exchange module.

mod exchange_account;
mod exchange_market_data;
mod exchange;
pub mod info;
pub mod stream;

pub use exchange_account::ExchangeAccount;
pub use exchange_market_data::ExchangeMarketData;
pub use self::exchange::Exchange;
pub use super::shared;