Struct gitlab::types::IssuableTimeEstimate [] [src]

pub struct IssuableTimeEstimate {
    pub time_estimate: u64,
    pub total_time_spent: u64,
    pub human_time_estimate: Option<String>,
    pub human_total_time_spent: Option<String>,
}

A time estimate on an issue or merge request.

Fields

The time estimate, in seconds.

The total time spent, in seconds.

The time estimate, as a human-readable string.

The total time spent, as a human-readable string.

Trait Implementations

impl Debug for IssuableTimeEstimate
[src]

Formats the value using the given formatter.

impl Clone for IssuableTimeEstimate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more