pub struct JobProgress {
pub current: u64,
pub total: u64,
pub message: Option<String>,
pub fence: u64,
pub updated_at_ms: i64,
}Expand description
The latest progress accepted from a fenced running attempt. fence identifies the
writer and updated_at_ms always comes from the store clock.
Fields§
§current: u64§total: u64§message: Option<String>§fence: u64§updated_at_ms: i64Trait Implementations§
Source§impl Clone for JobProgress
impl Clone for JobProgress
Source§fn clone(&self) -> JobProgress
fn clone(&self) -> JobProgress
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JobProgress
impl Debug for JobProgress
impl Eq for JobProgress
Source§impl PartialEq for JobProgress
impl PartialEq for JobProgress
impl StructuralPartialEq for JobProgress
Auto Trait Implementations§
impl Freeze for JobProgress
impl RefUnwindSafe for JobProgress
impl Send for JobProgress
impl Sync for JobProgress
impl Unpin for JobProgress
impl UnsafeUnpin for JobProgress
impl UnwindSafe for JobProgress
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