Struct Subspace :: sus :: fn :: Anything

struct Anything
{ ... };

When used as the return type of the function signature in Fn, FnMut and FnOnce, the concepts will match against any return type from a functor including void.

Use NonVoid to exclude void as an accepted return type.

Static Methods

template <class T>
Anything(T&&)