pub struct QueueOverview {
pub name: String,
pub max_workers: i32,
pub paused: bool,
pub retain_done_days: i32,
pub retain_dead_days: i32,
pub backoff_enabled: bool,
pub backoff_base_seconds: i32,
pub backoff_max_seconds: i32,
pub throttled_until: Option<DateTime<Utc>>,
pub oldest_pending_age_seconds: u64,
pub counts: StatusCounts,
pub processes: Vec<QueueProcess>,
}Fields§
§name: String§max_workers: i32§paused: bool§retain_done_days: i32§retain_dead_days: i32§backoff_enabled: bool§backoff_base_seconds: i32§backoff_max_seconds: i32§throttled_until: Option<DateTime<Utc>>Cool-down deadline while the queue is throttled; drives the
“resuming in Ns” countdown on the card. None when not throttled.
oldest_pending_age_seconds: u64Age (seconds) of the oldest ready job — the queue lag. Sampled by the live-metrics chart.
counts: StatusCounts§processes: Vec<QueueProcess>Trait 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<'de> Deserialize<'de> for QueueOverview
impl<'de> Deserialize<'de> for QueueOverview
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 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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> FromFormData for Twhere
T: DeserializeOwned,
impl<T> FromFormData for Twhere
T: DeserializeOwned,
Source§fn from_event(ev: &Event) -> Result<T, FromFormDataError>
fn from_event(ev: &Event) -> Result<T, FromFormDataError>
Tries to deserialize the data, given only the
submit event.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 moreSource§impl<T> SerializableKey for T
impl<T> SerializableKey for T
Source§impl<T> StorageAccess<T> for T
impl<T> StorageAccess<T> for T
Source§fn as_borrowed(&self) -> &T
fn as_borrowed(&self) -> &T
Borrows the value.
Source§fn into_taken(self) -> T
fn into_taken(self) -> T
Takes the value.