changed ApiRequest field's visibility

This commit is contained in:
TotallyNot 2023-01-22 18:54:46 +01:00
parent 3d756656f1
commit 78a5ea37b9
2 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "torn-api" name = "torn-api"
version = "0.5.4" version = "0.5.5"
edition = "2021" edition = "2021"
authors = ["Pyrit [2111649]"] authors = ["Pyrit [2111649]"]
license = "MIT" license = "MIT"

View file

@ -136,10 +136,10 @@ pub struct ApiRequest<A>
where where
A: ApiCategoryResponse, A: ApiCategoryResponse,
{ {
selections: Vec<&'static str>, pub selections: Vec<&'static str>,
from: Option<DateTime<Utc>>, pub from: Option<DateTime<Utc>>,
to: Option<DateTime<Utc>>, pub to: Option<DateTime<Utc>>,
comment: Option<String>, pub comment: Option<String>,
phantom: std::marker::PhantomData<A>, phantom: std::marker::PhantomData<A>,
} }