1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Predefined data models for Tushare API responses.
//!
//! Each module contains strongly-typed structs that map 1:1 to Tushare API fields.
//! All structs derive `FromTushareData` for automatic conversion from API responses.
//!
//! # Design
//!
//! - **Data, not abstraction** — structs are plain data with no methods
//! - **One domain per module** — stock, fund, index, bond, etc.
//! - **Optional by default** — most fields are `Option<T>` because the API may omit them
//! - **Field names match API** — Rust field names mirror Tushare field names;
//! `#[tushare(field = "...")]` is used only when Rust syntax demands it
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;