pub struct WorkerServiceSummary {
pub worker_id: String,
pub run_id: Option<String>,
pub loops: u64,
pub attempts: u64,
pub succeeded_attempts: u64,
pub recovered_leases: u64,
pub idle_polls: u64,
pub stopped_reason: String,
pub final_status: Option<String>,
pub stop_requested: bool,
}Fields§
§worker_id: String§run_id: Option<String>§loops: u64§attempts: u64§succeeded_attempts: u64§recovered_leases: u64§idle_polls: u64§stopped_reason: String§final_status: Option<String>§stop_requested: boolTrait Implementations§
Source§impl Clone for WorkerServiceSummary
impl Clone for WorkerServiceSummary
Source§fn clone(&self) -> WorkerServiceSummary
fn clone(&self) -> WorkerServiceSummary
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 WorkerServiceSummary
impl Debug for WorkerServiceSummary
Source§impl Default for WorkerServiceSummary
impl Default for WorkerServiceSummary
Source§fn default() -> WorkerServiceSummary
fn default() -> WorkerServiceSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for WorkerServiceSummary
impl RefUnwindSafe for WorkerServiceSummary
impl Send for WorkerServiceSummary
impl Sync for WorkerServiceSummary
impl Unpin for WorkerServiceSummary
impl UnsafeUnpin for WorkerServiceSummary
impl UnwindSafe for WorkerServiceSummary
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