[][src]Struct rememberthemilk::TaskSeries

pub struct TaskSeries {
    pub id: String,
    pub name: String,
    pub created: DateTime<Utc>,
    pub modified: DateTime<Utc>,
    pub task: Vec<Task>,
    pub tags: Vec<String>,
    pub repeat: Option<RRule>,
}

A rememberthemilk Task Series. This corresponds to a single to-do item, and has the fields such as name and tags. It also may contain some Tasks, each of which is an instance of a possibly recurring or repeating task.

Fields

id: String

The task series' unique id within its list.

name: String

The name of the task.

created: DateTime<Utc>

The creation time.

modified: DateTime<Utc>

The last modification time.

task: Vec<Task>

The tasks within this series, if any.

tags: Vec<String>

A list of the tags attached to this task series.

repeat: Option<RRule>

Repetition information

Trait Implementations

impl Debug for TaskSeries[src]

impl<'de> Deserialize<'de> for TaskSeries[src]

impl Eq for TaskSeries[src]

impl PartialEq<TaskSeries> for TaskSeries[src]

impl Serialize for TaskSeries[src]

impl StructuralEq for TaskSeries[src]

impl StructuralPartialEq for TaskSeries[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

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.