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.

Required Associated Types§

Required Methods§

source

fn combine(self, other: Self) -> Result<Self::Combined, Self::Error>

Implementors§