pub struct JobMetricsRecord {
pub job_type: JobTypeName,
pub pending_count: i64,
pub leased_count: i64,
pub stale_leases: i64,
pub succeeded_24h: i64,
pub retryable_24h: i64,
pub terminal_24h: i64,
pub panicked_24h: i64,
pub timeout_24h: i64,
pub dead_lettered_24h: i64,
pub p50_duration_ms_24h: Option<f64>,
pub p95_duration_ms_24h: Option<f64>,
}Fields§
§job_type: JobTypeName§pending_count: i64§leased_count: i64§stale_leases: i64§succeeded_24h: i64§retryable_24h: i64§terminal_24h: i64§panicked_24h: i64§timeout_24h: i64§dead_lettered_24h: i64§p50_duration_ms_24h: Option<f64>§p95_duration_ms_24h: Option<f64>Trait Implementations§
Source§impl Clone for JobMetricsRecord
impl Clone for JobMetricsRecord
Source§fn clone(&self) -> JobMetricsRecord
fn clone(&self) -> JobMetricsRecord
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 moreAuto Trait Implementations§
impl Freeze for JobMetricsRecord
impl RefUnwindSafe for JobMetricsRecord
impl Send for JobMetricsRecord
impl Sync for JobMetricsRecord
impl Unpin for JobMetricsRecord
impl UnsafeUnpin for JobMetricsRecord
impl UnwindSafe for JobMetricsRecord
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more