Struct jservice::Category [] [src]

pub struct Category {
    pub id: u64,
    pub title: String,
    pub created_at: Option<DateTime<UTC>>,
    pub updated_at: Option<DateTime<UTC>>,
    pub clues_count: u32,
    pub clues: Option<Vec<Clue>>,
}

A jService category.

Fields

The ID of the category.

The title of the category.

When the category was added to the database.

When the category was last updated.

How many clues belong to the category.

All of the clues that belong to this category.

Trait Implementations

impl Clone for Category
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more