Type Alias Callback

Source
pub type Callback<Context, Error> = Box<dyn Fn(BTreeMap<String, String>, &mut Context) -> Result<Option<String>, Error>>;
Expand description

Command callback function signature

Aliased Typeยง

pub struct Callback<Context, Error>(/* private fields */);