pub trait IsLambda3<A, B, C, D> { // Required methods fn call(&mut self, a: &A, b: &B, c: &C) -> D; fn deps_op(&self) -> Option<&Vec<Dep>>; }
Interface for a lambda function of three arguments.