We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f471541 commit 8661fcbCopy full SHA for 8661fcb
src/predictions.rs
@@ -65,12 +65,12 @@ pub struct Prediction {
65
/// Paginated list of available predictions
66
#[derive(serde::Deserialize, Debug)]
67
pub struct Predictions {
68
- // Identify for status in pagination
69
- next: Option<String>,
70
- // Identify for status of pagination
71
- previous: Option<String>,
72
- // List of predictions
73
- results: Vec<Prediction>,
+ /// Identify for status in pagination
+ pub next: Option<String>,
+ /// Identify for status of pagination
+ pub previous: Option<String>,
+ /// List of predictions
+ pub results: Vec<Prediction>,
74
}
75
76
impl Prediction {
0 commit comments