Struct todoist::resource::Filter [] [src]

pub struct Filter {
    pub id: ID,
    pub name: String,
    pub query: String,
    pub color: Color,
    pub order: isize,
    pub is_deleted: IntBool,
    pub is_favorite: IntBool,
}

A Todoist filter

Fields

The filter's unique ID

The filter name

The filter query

The filter's color

The filter's place in the filter list (lowest is first)

whether this filter is marked as deleted

whether this filter is marked as a favorite

Trait Implementations

impl Default for Filter
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for Filter
[src]

[src]

Formats the value using the given formatter. Read more

impl Create for Filter
[src]

[src]

impl Update for Filter
[src]

[src]

impl Delete for Filter
[src]

[src]

Auto Trait Implementations

impl Send for Filter

impl Sync for Filter