pub trait ActionBuilderFn: Fn(&str, ActionKey) -> Action { }

Trait Implementations§

source§

impl Debug for Box<dyn ActionBuilderFn>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Implementors§

source§

impl<F> ActionBuilderFn for Fwhere F: Fn(&str, ActionKey) -> Action,