pub trait Invalidator<M> {
    // Required method
    fn mutations(&self) -> Vec<M>;
}
Expand description

Something which produces invalidations.

Required Methods§

source

fn mutations(&self) -> Vec<M>

Implementors§