pub struct StepInfo {
pub duration_milliseconds: Option<i64>,
pub name: Option<String>,
pub start_time: Option<Time>,
}
Expand description
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§
Source§impl<'de> Deserialize<'de> for StepInfo
impl<'de> Deserialize<'de> for StepInfo
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for StepInfo
Auto Trait Implementations§
impl Freeze for StepInfo
impl RefUnwindSafe for StepInfo
impl Send for StepInfo
impl Sync for StepInfo
impl Unpin for StepInfo
impl UnwindSafe for StepInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more