pub trait Delta {
type Project: Project;
// Required method
fn perform(&self, context: &mut ProjectContext<'_, Self::Project>);
}Expand description
A tiny change to the project. Used for moving backwards in time for the collaboration conflict resolution system.