pub struct Catalog {
pub workers: Vec<WorkerInfo>,
pub cron_workers: Vec<CronWorkerInfo>,
pub queues: Vec<QueueInfo>,
}Expand description
Catalog of all registered workers and queues.
Fields§
§workers: Vec<WorkerInfo>Regular (non-cron) workers.
cron_workers: Vec<CronWorkerInfo>Cron workers with schedule information.
queues: Vec<QueueInfo>Registered queues.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Catalog
impl RefUnwindSafe for Catalog
impl Send for Catalog
impl Sync for Catalog
impl Unpin for Catalog
impl UnsafeUnpin for Catalog
impl UnwindSafe for Catalog
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