pub trait FunCall<Args>: Call<Conv = Func> {
type Result;
}
Expand description
A function whose arguments are pre-evaluated
Note that it is acceptable to arbitrarily constrain this impl, and also to provide multiple impls for the same type, as long as they do not overlap.
Args
is an hlist
of all the arguments passed to the function.