Skip to main content

moex_client/
blocking.rs

1//! Блокирующий API клиента ISS.
2
3#[cfg(feature = "history")]
4/// Ленивый paginator по `history` в блокирующем API.
5pub use crate::moex::HistoryPages;
6/// Блокирующий клиент и его builder.
7pub use crate::moex::{BlockingMoexClient as Client, BlockingMoexClientBuilder as ClientBuilder};
8/// Основные paginator-ы и scope-типы блокирующего API.
9pub use crate::moex::{
10    CandlesPages, GlobalSecuritiesPages, IndexAnalyticsPages, MarketSecuritiesPages,
11    MarketTradesPages, OwnedBoardScope as BoardScope, OwnedEngineScope as EngineScope,
12    OwnedIndexScope as IndexScope, OwnedMarketScope as MarketScope,
13    OwnedMarketSecurityScope as MarketSecurityScope,
14    OwnedSecurityResourceScope as SecurityResourceScope, OwnedSecurityScope as SecurityScope,
15    RawIssRequestBuilder as RawRequest, SecStatsPages, SecuritiesPages, TradesPages,
16};
17#[cfg(feature = "news")]
18/// Пагинация новостных endpoint-ов в блокирующем API.
19pub use crate::moex::{EventsPages, SiteNewsPages};