1 2 3 4 5 6 7 8 9 10 11 12 13
use crate::datastore::api; use crate::datastore::{Key, Value}; /// Represents a Datastore mutation operation. #[derive(Debug, Clone, PartialEq)] pub enum Mutation { Insert(Entity), Update(Entity), Upsert(Entity), Delete(Key), } impl Mutation {}