Struct batch_processing::core::job::JobStatus
source · pub struct JobStatus {
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§
§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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)