pub struct IntervalWindow {
pub window: JobTimeWindow,
pub every: Option<Duration>,
}Expand description
Interval override for a matching time window.
Fields§
§window: JobTimeWindow§every: Option<Duration>Implementations§
Source§impl IntervalWindow
impl IntervalWindow
pub fn new(window: JobTimeWindow, every: Option<Duration>) -> Self
Trait Implementations§
Source§impl Clone for IntervalWindow
impl Clone for IntervalWindow
Source§fn clone(&self) -> IntervalWindow
fn clone(&self) -> IntervalWindow
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 IntervalWindow
impl Debug for IntervalWindow
Source§impl PartialEq for IntervalWindow
impl PartialEq for IntervalWindow
Source§fn eq(&self, other: &IntervalWindow) -> bool
fn eq(&self, other: &IntervalWindow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for IntervalWindow
impl StructuralPartialEq for IntervalWindow
Auto Trait Implementations§
impl Freeze for IntervalWindow
impl RefUnwindSafe for IntervalWindow
impl Send for IntervalWindow
impl Sync for IntervalWindow
impl Unpin for IntervalWindow
impl UnsafeUnpin for IntervalWindow
impl UnwindSafe for IntervalWindow
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