[][src]Struct rrule::PartialOptions

pub struct PartialOptions {
    pub freq: Option<Frequenzy>,
    pub interval: Option<usize>,
    pub count: Option<u32>,
    pub until: Option<DateTime<Utc>>,
    pub tzid: Option<String>,
    pub dtstart: Option<DateTime<Utc>>,
    pub wkst: Option<usize>,
    pub bysetpos: Option<Vec<isize>>,
    pub bymonth: Option<Vec<usize>>,
    pub bymonthday: Option<Vec<isize>>,
    pub bynmonthday: Option<Vec<isize>>,
    pub byyearday: Option<Vec<isize>>,
    pub byweekno: Option<Vec<isize>>,
    pub byweekday: Option<Vec<usize>>,
    pub byhour: Option<Vec<usize>>,
    pub byminute: Option<Vec<usize>>,
    pub bysecond: Option<Vec<usize>>,
    pub bynweekday: Option<Vec<Vec<isize>>>,
    pub byeaster: Option<isize>,
}

Fields

freq: Option<Frequenzy>interval: Option<usize>count: Option<u32>until: Option<DateTime<Utc>>tzid: Option<String>dtstart: Option<DateTime<Utc>>wkst: Option<usize>bysetpos: Option<Vec<isize>>bymonth: Option<Vec<usize>>bymonthday: Option<Vec<isize>>bynmonthday: Option<Vec<isize>>byyearday: Option<Vec<isize>>byweekno: Option<Vec<isize>>byweekday: Option<Vec<usize>>byhour: Option<Vec<usize>>byminute: Option<Vec<usize>>bysecond: Option<Vec<usize>>bynweekday: Option<Vec<Vec<isize>>>byeaster: Option<isize>

Implementations

impl PartialOptions[src]

pub fn new() -> Self[src]

pub fn concat(opt1: &Self, opt2: &Self) -> Self[src]

Trait Implementations

impl Clone for PartialOptions[src]

impl Debug for PartialOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.