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

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

StepInfo contains details about a build step.

Fields

duration_milliseconds: Option<i64>

durationMilliseconds identifies how long the step took to complete in milliseconds.

name: Option<String>

name is a unique identifier for each build step.

start_time: Option<Time>

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

Trait Implementations

impl Clone for StepInfo[src]

impl Debug for StepInfo[src]

impl Default for StepInfo[src]

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

impl PartialEq<StepInfo> for StepInfo[src]

impl Serialize for StepInfo[src]

impl StructuralPartialEq for StepInfo[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.