Skip to main content

futu_core/
qot_right_gate.rs

1//! Pure QOT subscription and read permission decisions.
2
3mod common;
4mod constants;
5mod model;
6mod read;
7mod subscribe;
8
9pub use constants::{
10    QOT_MARKET_CC_SECURITY, QOT_RIGHT_BMP, QOT_RIGHT_LEVEL1, QOT_RIGHT_LEVEL2, QOT_RIGHT_LEVEL3,
11    QOT_RIGHT_NO, QOT_RIGHT_SF, QOT_RIGHT_UNKNOWN, SECURITY_TYPE_CRYPTO, SECURITY_TYPE_DRVT,
12    SECURITY_TYPE_FUTURE, SECURITY_TYPE_INDEX,
13};
14pub use model::{QotRightSnapshot, QotSubRightSecurity, SecurityRightClass};
15pub use read::{
16    qot_read_right_reject_reason, qot_read_right_reject_reason_for_jp_stock_without_static,
17};
18pub use subscribe::{first_qot_sub_right_reject_reason, qot_sub_right_reject_reason};