Struct jservice::Clue [] [src]

pub struct Clue {
    pub id: u64,
    pub answer: String,
    pub question: String,
    pub value: Option<i32>,
    pub airdate: DateTime<UTC>,
    pub created_at: Option<DateTime<UTC>>,
    pub updated_at: Option<DateTime<UTC>>,
    pub category_id: u64,
    pub game_id: Option<u64>,
    pub invalid_count: Option<u32>,
    pub category: Option<Category>,
}

A jService clue.

Fields

The ID of the clue.

The answer of the clue.

The question of the clue.

The dollar value of the clue. If None, clue is a Daily Double.

The original air date of the clue.

When the clue was added to the database.

When the clue was last updated.

The ID of the category of the clue.

How many times the clue has been marked invalid by users.

The category of the clue.

Trait Implementations

impl Clone for Clue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more