[][src]Trait sodium_rust::IsLambda2

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

Required methods

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

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

Loading content...

Implementors

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

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

Loading content...