pub struct JobStateJob {
pub id: String,
pub status: JobStatus,
pub started_at: Option<String>,
}Expand description
Nested job block within state.json.
Fields§
§id: String§status: JobStatus§started_at: Option<String>RFC 3339 execution start timestamp; absent for jobs in created state.
Trait Implementations§
Source§impl Clone for JobStateJob
impl Clone for JobStateJob
Source§fn clone(&self) -> JobStateJob
fn clone(&self) -> JobStateJob
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for JobStateJob
impl Debug for JobStateJob
Source§impl<'de> Deserialize<'de> for JobStateJob
impl<'de> Deserialize<'de> for JobStateJob
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
Auto Trait Implementations§
impl Freeze for JobStateJob
impl RefUnwindSafe for JobStateJob
impl Send for JobStateJob
impl Sync for JobStateJob
impl Unpin for JobStateJob
impl UnsafeUnpin for JobStateJob
impl UnwindSafe for JobStateJob
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