Trait sodium::IsLambda4

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

Interface for a lambda function of four arguments.

Required Methods§

source

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

source

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

Implementors§

source§

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