pub struct QueueInfo {
pub name: String,
pub stats: Vec<Statistic>,
pub workers: Vec<String>,
pub activity: Vec<usize>,
}Expand description
Represents information about a specific queue in the backend
Fields§
§name: StringName of the queue
stats: Vec<Statistic>Statistics related to the queue
workers: Vec<String>List of workers associated with the queue
activity: Vec<usize>Last 7 days of activity in the queue
Trait Implementations§
Source§impl<'de> Deserialize<'de> for QueueInfo
impl<'de> Deserialize<'de> for QueueInfo
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 QueueInfo
impl RefUnwindSafe for QueueInfo
impl Send for QueueInfo
impl Sync for QueueInfo
impl Unpin for QueueInfo
impl UnwindSafe for QueueInfo
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