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
/// Whether a table matches the shape of the metadata it was built under.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct TableShape {
    pub is_stale: bool,
}

impl TableShape {
    pub const CURRENT: Self = Self { is_stale: false };
    pub const STALE: Self = Self { is_stale: true };
}