mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-17 05:07:35 -04:00
7 lines
154 B
Rust
7 lines
154 B
Rust
/// A type used by the query planner for incremental evaluation
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
pub enum Delta {
|
|
Inserts,
|
|
Deletes,
|
|
}
|