pub struct DateQuery {
pub day: i32,
pub month: i32,
pub year: i32,
pub timezone: Option<f64>,
pub ruleset_id: Option<String>,
pub event_kind: Option<String>,
pub enabled_pack_ids: Vec<String>,
}Fields§
§day: i32§month: i32§year: i32§timezone: Option<f64>§ruleset_id: Option<String>§event_kind: Option<String>§enabled_pack_ids: Vec<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for DateQuery
impl<'de> Deserialize<'de> for DateQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DateQuery
impl RefUnwindSafe for DateQuery
impl Send for DateQuery
impl Sync for DateQuery
impl Unpin for DateQuery
impl UnsafeUnpin for DateQuery
impl UnwindSafe for DateQuery
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more