operon 0.7.0

A workflow engine for parallel, incremental scheduling of DAG-defined multiplex tasks.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Options for the in-memory storage.
///
/// The store is volatile and has no connection or schema to configure, so it takes no parameters.
#[derive(Debug, Clone, Copy, Default)]
#[non_exhaustive]
pub struct MemStorageOptions {}

impl MemStorageOptions {
    /// Constructs a new `MemStorageOptions` instance.
    pub fn new() -> Self {
        Self {}
    }
}