Delta

Trait Delta 

Source
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.

Required Associated Types§

Required Methods§

Source

fn perform(&self, context: &mut ProjectContext<'_, Self::Project>)

Implementors§