Struct openshift_openapi::api::build::v1::StageInfo[][src]

pub struct StageInfo {
    pub duration_milliseconds: Option<i64>,
    pub name: Option<String>,
    pub start_time: Option<Time>,
    pub steps: Option<Vec<StepInfo>>,
}

StageInfo contains details about a build stage.

Fields

duration_milliseconds: Option<i64>

durationMilliseconds identifies how long the stage took to complete in milliseconds. Note: the duration of a stage can exceed the sum of the duration of the steps within the stage as not all actions are accounted for in explicit build steps.

name: Option<String>

name is a unique identifier for each build stage that occurs.

start_time: Option<Time>

startTime is a timestamp representing the server time when this Stage started. It is represented in RFC3339 form and is in UTC.

steps: Option<Vec<StepInfo>>

steps contains details about each step that occurs during a build stage including start time and duration in milliseconds.

Trait Implementations

impl Clone for StageInfo[src]

impl Debug for StageInfo[src]

impl Default for StageInfo[src]

impl<'de> Deserialize<'de> for StageInfo[src]

impl PartialEq<StageInfo> for StageInfo[src]

impl Serialize for StageInfo[src]

impl StructuralPartialEq for StageInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.