exc_core/util/
mod.rs

1/// Period utils.
2pub mod period;
3
4/// Create a service to subscribe tickers from subscribe trades and bid/ask.
5pub mod trade_bid_ask;
6
7/// Create a service to subscribe instruments by first fetching.
8pub mod fetch_instruments_first;
9
10/// Poll instruments.
11#[cfg(feature = "poll")]
12pub mod poll_instruments;
13
14/// Fetch candles.
15#[cfg(feature = "fetch-candles")]
16pub mod fetch_candles;
17
18pub use period::{trunc, PeriodExt};