Trait IsLambda5

Source
pub trait IsLambda5<A, B, C, D, E, F> {
    // Required methods
    fn call(&mut self, a: &A, b: &B, c: &C, d: &D, e: &E) -> F;
    fn deps_op(&self) -> Option<&Vec<Dep>>;
}
Expand description

Interface for a lambda function of five arguments.

Required Methods§

Source

fn call(&mut self, a: &A, b: &B, c: &C, d: &D, e: &E) -> F

Source

fn deps_op(&self) -> Option<&Vec<Dep>>

Implementors§

Source§

impl<A, B, C, D, E, F, FN: FnMut(&A, &B, &C, &D, &E) -> F> IsLambda5<A, B, C, D, E, F> for FN