Struct gitlab::types::Milestone [] [src]

pub struct Milestone {
    pub id: MilestoneId,
    pub iid: u64,
    pub project_id: ProjectId,
    pub title: String,
    pub description: String,
    pub state: MilestoneState,
    pub created_at: DateTime<UTC>,
    pub updated_at: DateTime<UTC>,
    pub due_date: Option<NaiveDate>,
    pub start_date: Option<NaiveDate>,
}

A milestone in a project.

Fields

The ID of the milestone.

The user-visible ID of the milestone.

The ID of the project.

The title of the milestone.

The description of the milestone.

The state of the milestone.

When the milestone was created.

When the milestone was last updated.

When the milestone is due.

When the milestone was started.

Trait Implementations

impl Debug for Milestone
[src]

Formats the value using the given formatter.

impl Clone for Milestone
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more