Trait hetseq::HetFn [] [src]

pub trait HetFn<A>: HetFnMut<A> {
    fn call(&self, arg: A) -> Self::Output;
}

Substitution for Fn trait family in stable and beta channels In nightly consider to use "nightly" feature and Fn trait family

Required Methods

Call the function

Implementations on Foreign Types

impl<'a, A, X> HetFn<A> for &'a X where
    X: HetFn<A>, 
[src]

[src]

Implementors