pub struct UpdateProgressArgs {
pub execution_id: ExecutionId,
pub lease_id: LeaseId,
pub lease_epoch: LeaseEpoch,
pub attempt_id: AttemptId,
pub progress_pct: Option<u8>,
pub progress_message: Option<String>,
pub now: TimestampMs,
}Fields§
§execution_id: ExecutionId§lease_id: LeaseId§lease_epoch: LeaseEpoch§attempt_id: AttemptId§progress_pct: Option<u8>§progress_message: Option<String>§now: TimestampMsTrait Implementations§
Source§impl Clone for UpdateProgressArgs
impl Clone for UpdateProgressArgs
Source§fn clone(&self) -> UpdateProgressArgs
fn clone(&self) -> UpdateProgressArgs
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 UpdateProgressArgs
impl Debug for UpdateProgressArgs
Source§impl<'de> Deserialize<'de> for UpdateProgressArgs
impl<'de> Deserialize<'de> for UpdateProgressArgs
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 UpdateProgressArgs
impl RefUnwindSafe for UpdateProgressArgs
impl Send for UpdateProgressArgs
impl Sync for UpdateProgressArgs
impl Unpin for UpdateProgressArgs
impl UnsafeUnpin for UpdateProgressArgs
impl UnwindSafe for UpdateProgressArgs
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