pub struct JobStatus {
pub name: String,
pub start_time: Option<u128>,
pub end_time: Option<u128>,
pub status: Result<String, String>,
pub steps_status: Vec<StepStatus>,
}
Expand description
Represents the status of a job execution.
Fields§
§name: String
The name of the job.
start_time: Option<u128>
The start time of the job execution.
end_time: Option<u128>
The end time of the job execution.
status: Result<String, String>
The status message of the job execution.
steps_status: Vec<StepStatus>
The status of each step in the job execution.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JobStatus
impl RefUnwindSafe for JobStatus
impl Send for JobStatus
impl Sync for JobStatus
impl Unpin for JobStatus
impl UnwindSafe for JobStatus
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