pub struct ServiceJobStatusInlineItem {
pub job_iteration: Option<ObjectVersion>,
pub last_execution: Option<DateTime<Utc>>,
}
Expand description
The status of the service when it is in one of ReplicatedJob or GlobalJob modes. Absent on Replicated and Global mode services. The JobIteration is an ObjectVersion, but unlike the Service’s version, does not need to be sent with an update request.
Fields
job_iteration: Option<ObjectVersion>
last_execution: Option<DateTime<Utc>>
The last time, as observed by the server, that this job was started.
Trait Implementations
sourceimpl Clone for ServiceJobStatusInlineItem
impl Clone for ServiceJobStatusInlineItem
sourcefn clone(&self) -> ServiceJobStatusInlineItem
fn clone(&self) -> ServiceJobStatusInlineItem
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ServiceJobStatusInlineItem
impl Debug for ServiceJobStatusInlineItem
sourceimpl<'de> Deserialize<'de> for ServiceJobStatusInlineItem
impl<'de> Deserialize<'de> for ServiceJobStatusInlineItem
sourcefn 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
sourceimpl PartialEq<ServiceJobStatusInlineItem> for ServiceJobStatusInlineItem
impl PartialEq<ServiceJobStatusInlineItem> for ServiceJobStatusInlineItem
sourcefn eq(&self, other: &ServiceJobStatusInlineItem) -> bool
fn eq(&self, other: &ServiceJobStatusInlineItem) -> bool
impl StructuralPartialEq for ServiceJobStatusInlineItem
Auto Trait Implementations
impl RefUnwindSafe for ServiceJobStatusInlineItem
impl Send for ServiceJobStatusInlineItem
impl Sync for ServiceJobStatusInlineItem
impl Unpin for ServiceJobStatusInlineItem
impl UnwindSafe for ServiceJobStatusInlineItem
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more