Struct storyboard_client::Task[][src]

pub struct Task {
    pub assignee_id: Option<i32>,
    pub branch_id: Option<i32>,
    pub creator_id: Option<i32>,
    pub due_dates: Option<Vec<DateTime<Utc>>>,
    pub link: Option<String>,
    pub milestone_id: Option<i32>,
    pub priority: Option<String>,
    pub project_id: Option<i32>,
    pub status: Option<String>,
    pub story_id: i32,
    pub title: String,
}

Represents a task from the storyboard API.

Fields

The ID of the user that this task is assigned.

The ID of the branch.

The ID of the user that created this task.

The due dates related with this task

The link to the related resource to this task.

The ID of the corresponding milestone.

The priority of this task.

The ID of the corresponding project.

The status of this task.

The ID of the corresponding story.

An optional short label for this task.

Trait Implementations

impl Debug for Task
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Task

impl Sync for Task