pub struct QueueJobStats {
pub active_since_prev_tick: u64,
pub active: u64,
pub waiting: u64,
pub delayed: u64,
}Fields§
§active_since_prev_tick: u64§active: u64§waiting: u64§delayed: u64Trait Implementations§
Source§impl Clone for QueueJobStats
impl Clone for QueueJobStats
Source§fn clone(&self) -> QueueJobStats
fn clone(&self) -> QueueJobStats
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 moreSource§impl Debug for QueueJobStats
impl Debug for QueueJobStats
Source§impl<'de> Deserialize<'de> for QueueJobStats
impl<'de> Deserialize<'de> for QueueJobStats
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 QueueJobStats
impl RefUnwindSafe for QueueJobStats
impl Send for QueueJobStats
impl Sync for QueueJobStats
impl Unpin for QueueJobStats
impl UnwindSafe for QueueJobStats
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