#[non_exhaustive]pub struct QueueStatus {
pub total_work_units: u64,
pub completed_work_units: u64,
pub in_progress_work_units: u64,
pub pending_work_units: u64,
pub sessions: Option<HashMap<String, SessionQueueStatus>>,
}Expand description
Aggregated processing queue status.
Tracks user-facing task types only: representation, summary, and dream. Internal infrastructure tasks (reconciler, webhook, deletion) are excluded.
Maps QueueStatus from the OpenAPI spec.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.total_work_units: u64Total work units.
completed_work_units: u64Completed work units (since last periodic cleanup).
in_progress_work_units: u64Work units currently being processed.
pending_work_units: u64Work units waiting to be processed.
sessions: Option<HashMap<String, SessionQueueStatus>>Per-session status when not filtered by session.
Trait Implementations§
Source§impl Clone for QueueStatus
impl Clone for QueueStatus
Source§fn clone(&self) -> QueueStatus
fn clone(&self) -> QueueStatus
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 QueueStatus
impl Debug for QueueStatus
Source§impl<'de> Deserialize<'de> for QueueStatus
impl<'de> Deserialize<'de> for QueueStatus
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
impl Eq for QueueStatus
Source§impl PartialEq for QueueStatus
impl PartialEq for QueueStatus
Source§impl Serialize for QueueStatus
impl Serialize for QueueStatus
impl StructuralPartialEq for QueueStatus
Auto Trait Implementations§
impl Freeze for QueueStatus
impl RefUnwindSafe for QueueStatus
impl Send for QueueStatus
impl Sync for QueueStatus
impl Unpin for QueueStatus
impl UnsafeUnpin for QueueStatus
impl UnwindSafe for QueueStatus
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.