Trait sodium::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