Trait actions::Merge[][src]

pub trait Merge where
    Self: Sized + Clone
{ fn merge(&self, previous: &Self) -> MergeResult<Self>; }

Trait that enables actions to merge.

Required Methods

Merge two actions. Caution! The order of actions matters! The previous action is executed first, then &self.

Arguments

previous: The previous action.

Implementors