Struct chronos_parser_rs::CronInterval
source · pub struct CronInterval<Tz: TimeZone, S: Specification<DateTime<Tz>>> { /* private fields */ }
Expand description
A structure representing an interval of CROND date and time.
CROND日時の区間を表す構造体。
Implementations
sourceimpl<Tz: TimeZone, S: Specification<DateTime<Tz>>> CronInterval<Tz, S>
impl<Tz: TimeZone, S: Specification<DateTime<Tz>>> CronInterval<Tz, S>
sourcepub fn new(
start_value: LimitValue<DateTime<Tz>>,
end_value: LimitValue<DateTime<Tz>>,
cron_specification: S
) -> Self
pub fn new(
start_value: LimitValue<DateTime<Tz>>,
end_value: LimitValue<DateTime<Tz>>,
cron_specification: S
) -> Self
The Factory method.
ファクトリメソッド。
sourcepub fn iter(&self, timezone: Tz) -> CronIntervalIterator<Tz, S> ⓘ
pub fn iter(&self, timezone: Tz) -> CronIntervalIterator<Tz, S> ⓘ
Returns a CronIntervalIterator.
CronIntervalIteratorを返す。
Trait Implementations
sourceimpl<Tz: Clone + TimeZone, S: Clone + Specification<DateTime<Tz>>> Clone for CronInterval<Tz, S>
impl<Tz: Clone + TimeZone, S: Clone + Specification<DateTime<Tz>>> Clone for CronInterval<Tz, S>
sourcefn clone(&self) -> CronInterval<Tz, S>
fn clone(&self) -> CronInterval<Tz, S>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations
impl<Tz, S> RefUnwindSafe for CronInterval<Tz, S>where
S: RefUnwindSafe,
Tz: RefUnwindSafe,
impl<Tz, S> Send for CronInterval<Tz, S>where
S: Send,
Tz: Send,
impl<Tz, S> Sync for CronInterval<Tz, S>where
S: Sync,
Tz: Sync,
impl<Tz, S> Unpin for CronInterval<Tz, S>where
S: Unpin,
Tz: Unpin,
impl<Tz, S> UnwindSafe for CronInterval<Tz, S>where
S: UnwindSafe,
Tz: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more