pub trait Recalc<V, E> {
    // Required method
    fn recalc(&self, vertex: &V, edge: &E) -> Self;
}

Required Methods§

source

fn recalc(&self, vertex: &V, edge: &E) -> Self

Implementors§