changed ApiRequest field's visibility
This commit is contained in:
parent
3d756656f1
commit
78a5ea37b9
|
@ -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"
|
||||||
|
|
|
@ -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>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue