pub struct JobTimeWindow {
pub timezone: Option<Tz>,
pub weekdays: Vec<Weekday>,
pub segments: Vec<TimeWindowSegment>,
}Fields§
§timezone: Option<Tz>§weekdays: Vec<Weekday>§segments: Vec<TimeWindowSegment>Implementations§
Trait Implementations§
Source§impl Clone for JobTimeWindow
impl Clone for JobTimeWindow
Source§fn clone(&self) -> JobTimeWindow
fn clone(&self) -> JobTimeWindow
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 JobTimeWindow
impl Debug for JobTimeWindow
Source§impl Default for JobTimeWindow
impl Default for JobTimeWindow
Source§fn default() -> JobTimeWindow
fn default() -> JobTimeWindow
Returns the “default value” for a type. Read more
Source§impl PartialEq for JobTimeWindow
impl PartialEq for JobTimeWindow
Source§fn eq(&self, other: &JobTimeWindow) -> bool
fn eq(&self, other: &JobTimeWindow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for JobTimeWindow
impl StructuralPartialEq for JobTimeWindow
Auto Trait Implementations§
impl Freeze for JobTimeWindow
impl RefUnwindSafe for JobTimeWindow
impl Send for JobTimeWindow
impl Sync for JobTimeWindow
impl Unpin for JobTimeWindow
impl UnsafeUnpin for JobTimeWindow
impl UnwindSafe for JobTimeWindow
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