Daily

Struct Daily 

Source
pub struct Daily { /* private fields */ }
Expand description

A recurrence pattern for daily events which may also include fixed times of the day.

§Example

use recurring::pattern::Daily;
use jiff::civil::time;

let every_two_days_at_twelve = Daily::new(1).at(time(12, 0, 0, 0));

Implementations§

Source§

impl Daily

Source

pub fn new<I: ToSpan>(interval: I) -> Daily

Creates a new Daily from an interval of days.

The fallible version of this method is Daily::try_new.

§Panics

Panics if interval is negative or zero.

§Example
use recurring::pattern::Daily;

let every_two_days = Daily::new(2);
Source

pub fn try_new<I: ToSpan>(interval: I) -> Result<Daily, Error>

Creates a new Daily from an interval of days.

The panicking version of this method is Daily::new.

§Errors

Returns an Error if interval is negative or zero.

§Example
use recurring::pattern::Daily;

assert!(Daily::try_new(1).is_ok());
assert!(Daily::try_new(0).is_err());
assert!(Daily::try_new(-1).is_err());
Source

pub fn at<T: Into<Time>>(self, time: T) -> Daily

Sets the exact time of day for the daily recurrence.

§Example
use jiff::civil::time;
use recurring::pattern::daily;

let every_day_at_twelve = daily(1).at(time(12, 0, 0, 0));

let every_day_at_midnight_and_twelve = every_day_at_twelve.at(time(0, 0, 0, 0));

Trait Implementations§

Source§

impl Clone for Daily

Source§

fn clone(&self) -> Daily

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Daily

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for Daily

Source§

fn eq(&self, other: &Daily) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Pattern for Daily

Source§

fn next_after( &self, instant: DateTime, range: DateTimeRange, ) -> Option<DateTime>

Find the next DateTime after instant within a range. Read more
Source§

fn previous_before( &self, instant: DateTime, range: DateTimeRange, ) -> Option<DateTime>

Find the previous DateTime before instant within a range. Read more
Source§

fn closest_to( &self, instant: DateTime, range: DateTimeRange, ) -> Option<DateTime>

Find a DateTime closest to instant within a range. Read more
Source§

impl Eq for Daily

Source§

impl StructuralPartialEq for Daily

Auto Trait Implementations§

§

impl Freeze for Daily

§

impl RefUnwindSafe for Daily

§

impl Send for Daily

§

impl Sync for Daily

§

impl Unpin for Daily

§

impl UnwindSafe for Daily

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> Combine for T
where T: Pattern,

Source§

fn and<P: Pattern>(self, other: P) -> Combined<Self, P>

Combine Self with another Pattern. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.