Enum collectd_plugin::PluginRegistration [] [src]

pub enum PluginRegistration {
    Single(Box<Plugin>),
    Multiple(Vec<(String, Box<Plugin>)>),
}

How many instances of the plugin will be registered

Variants

Our module will only register a single plugin

Our module registers several modules. The String in the tuple must be unique identifier

Trait Implementations

Auto Trait Implementations