[][src]Trait sodium_rust::IsLambda3

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

Required methods

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

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

Loading content...

Implementors

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

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

Loading content...