Trait dock_core::util::batch_update::CombineUpdates   
source · pub trait CombineUpdates {
    type Combined;
    type Error;
    // Required method
    fn combine(self, other: Self) -> Result<Self::Combined, Self::Error>;
}Expand description
Combines two updates together if possible.