pub type IsWhitespaceFn = Box<dyn Fn(String) -> bool>;
Function mapping string element to bool denoting whether it’s a whitespace defined by user.
struct IsWhitespaceFn(/* private fields */);