pub struct QueueOverview {Show 20 fields
pub queue: String,
pub display_name: Option<String>,
pub description: Option<String>,
pub owner: Option<String>,
pub docs_url: Option<String>,
pub tags: Vec<String>,
pub extra: Value,
pub descriptor_last_seen_at: Option<DateTime<Utc>>,
pub descriptor_stale: bool,
pub descriptor_mismatch: bool,
pub total_queued: i64,
pub scheduled: i64,
pub available: i64,
pub retryable: i64,
pub running: i64,
pub failed: i64,
pub waiting_external: i64,
pub completed_last_hour: i64,
pub lag_seconds: Option<f64>,
pub paused: bool,
}Fields§
§queue: String§display_name: Option<String>§description: Option<String>§owner: Option<String>§docs_url: Option<String>§extra: Value§descriptor_last_seen_at: Option<DateTime<Utc>>§descriptor_stale: bool§descriptor_mismatch: bool§total_queued: i64All non-terminal jobs for the queue, including running and waiting_external.
scheduled: i64§available: i64§retryable: i64§running: i64§failed: i64§waiting_external: i64§completed_last_hour: i64§lag_seconds: Option<f64>§paused: boolTrait Implementations§
Source§impl Clone for QueueOverview
impl Clone for QueueOverview
Source§fn clone(&self) -> QueueOverview
fn clone(&self) -> QueueOverview
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 QueueOverview
impl Debug for QueueOverview
Source§impl<'a, R: Row> FromRow<'a, R> for QueueOverviewwhere
&'a str: ColumnIndex<R>,
String: Decode<'a, R::Database> + Type<R::Database>,
Option<String>: Decode<'a, R::Database> + Type<R::Database>,
Vec<String>: Decode<'a, R::Database> + Type<R::Database>,
Value: Decode<'a, R::Database> + Type<R::Database>,
Option<DateTime<Utc>>: Decode<'a, R::Database> + Type<R::Database>,
bool: Decode<'a, R::Database> + Type<R::Database>,
i64: Decode<'a, R::Database> + Type<R::Database>,
Option<f64>: Decode<'a, R::Database> + Type<R::Database>,
impl<'a, R: Row> FromRow<'a, R> for QueueOverviewwhere
&'a str: ColumnIndex<R>,
String: Decode<'a, R::Database> + Type<R::Database>,
Option<String>: Decode<'a, R::Database> + Type<R::Database>,
Vec<String>: Decode<'a, R::Database> + Type<R::Database>,
Value: Decode<'a, R::Database> + Type<R::Database>,
Option<DateTime<Utc>>: Decode<'a, R::Database> + Type<R::Database>,
bool: Decode<'a, R::Database> + Type<R::Database>,
i64: Decode<'a, R::Database> + Type<R::Database>,
Option<f64>: Decode<'a, R::Database> + Type<R::Database>,
Auto Trait Implementations§
impl Freeze for QueueOverview
impl RefUnwindSafe for QueueOverview
impl Send for QueueOverview
impl Sync for QueueOverview
impl Unpin for QueueOverview
impl UnsafeUnpin for QueueOverview
impl UnwindSafe for QueueOverview
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