stop_at

Macro stop_at 

Source
macro_rules! stop_at {
    {} => { ... };
}
Available on crate feature parse2 only.
Expand description

“Type alias” for StopAt<impl Fn(KeywordRef<'_>) -> Option<Stop>>

This has to be a macro because the impl is a different type at each call site; even TAIT wouldn’t help with thaat.