celery 0.5.5

Rust implementation of Celery
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// An [`AsyncResult`] is a handle for the result of a task.
#[derive(Debug, Clone)]
pub struct AsyncResult {
    pub task_id: String,
}

impl AsyncResult {
    pub fn new(task_id: &str) -> Self {
        Self {
            task_id: task_id.into(),
        }
    }
}