[][src]Trait sodium_rust::IsLambda4

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

Required methods

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

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

Loading content...

Implementors

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

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

Loading content...