Skip to content

Commit 8661fcb

Browse files
committed
fixed warnings for dev
1 parent f471541 commit 8661fcb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/predictions.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ pub struct Prediction {
6565
/// Paginated list of available predictions
6666
#[derive(serde::Deserialize, Debug)]
6767
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>,
68+
/// Identify for status in pagination
69+
pub next: Option<String>,
70+
/// Identify for status of pagination
71+
pub previous: Option<String>,
72+
/// List of predictions
73+
pub results: Vec<Prediction>,
7474
}
7575

7676
impl Prediction {

0 commit comments

Comments
 (0)