changed ApiRequest field's visibility
This commit is contained in:
parent
3d756656f1
commit
78a5ea37b9
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "torn-api"
|
||||
version = "0.5.4"
|
||||
version = "0.5.5"
|
||||
edition = "2021"
|
||||
authors = ["Pyrit [2111649]"]
|
||||
license = "MIT"
|
||||
|
|
|
@ -136,10 +136,10 @@ pub struct ApiRequest<A>
|
|||
where
|
||||
A: ApiCategoryResponse,
|
||||
{
|
||||
selections: Vec<&'static str>,
|
||||
from: Option<DateTime<Utc>>,
|
||||
to: Option<DateTime<Utc>>,
|
||||
comment: Option<String>,
|
||||
pub selections: Vec<&'static str>,
|
||||
pub from: Option<DateTime<Utc>>,
|
||||
pub to: Option<DateTime<Utc>>,
|
||||
pub comment: Option<String>,
|
||||
phantom: std::marker::PhantomData<A>,
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue