[][src]Trait sodium_rust::IsLambda5

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

Required methods

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

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

Loading content...

Implementors

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

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

Loading content...