boson-runtime 0.1.0

Boson worker engine, builder, and enqueue orchestration
Documentation
1
2
3
4
5
6
7
8
9
10
//! Task registry implementation (quark macro output).

#![allow(missing_docs)]

use super::TaskDescriptor;

quark::define_registry! {
    /// Registry of tasks discovered via inventory or manual registration.
    pub struct TaskRegistry for TaskDescriptor;
}