pub struct TimecardWorkday {
pub date_range: Option<Box<DateRange>>,
pub match_timecards_by: Option<TimecardWorkdayMatcher>,
pub default_timezone: Option<Option<String>>,
}Expand description
TimecardWorkday : A Timecard search query filter parameter that sets a range of days that a Timecard must start or end in before passing the filter condition.
Fields§
§date_range: Option<Box<DateRange>>§match_timecards_by: Option<TimecardWorkdayMatcher>§default_timezone: Option<Option<String>>Location-specific timezones convert workdays to datetime filters. Every location included in the query must have a timezone or this field must be provided as a fallback. Format: the IANA timezone database identifier for the relevant timezone.
Implementations§
Source§impl TimecardWorkday
impl TimecardWorkday
Sourcepub fn new() -> TimecardWorkday
pub fn new() -> TimecardWorkday
A Timecard search query filter parameter that sets a range of days that a Timecard must start or end in before passing the filter condition.
Trait Implementations§
Source§impl Clone for TimecardWorkday
impl Clone for TimecardWorkday
Source§fn clone(&self) -> TimecardWorkday
fn clone(&self) -> TimecardWorkday
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TimecardWorkday
impl Debug for TimecardWorkday
Source§impl Default for TimecardWorkday
impl Default for TimecardWorkday
Source§fn default() -> TimecardWorkday
fn default() -> TimecardWorkday
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimecardWorkday
impl<'de> Deserialize<'de> for TimecardWorkday
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
Source§impl PartialEq for TimecardWorkday
impl PartialEq for TimecardWorkday
Source§impl Serialize for TimecardWorkday
impl Serialize for TimecardWorkday
impl StructuralPartialEq for TimecardWorkday
Auto Trait Implementations§
impl Freeze for TimecardWorkday
impl RefUnwindSafe for TimecardWorkday
impl Send for TimecardWorkday
impl Sync for TimecardWorkday
impl Unpin for TimecardWorkday
impl UnsafeUnpin for TimecardWorkday
impl UnwindSafe for TimecardWorkday
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