pub trait PluginInteractionBuilder {
    // Required method
    fn build(&self) -> Value;
}
Expand description

Trait for plugin authors to provider a typed interface to configure interactions

Required Methods§

source

fn build(&self) -> Value

Construct the map of configuration that is to be passed through to the plugin as a JSON value.

Implementors§