Skip to main content

PostConfigure

Trait PostConfigure 

Source
pub trait PostConfigure<T> {
    // Required method
    fn run(&self, name: &str, options: &mut T);
}
Expand description

Configures options.

§Remarks

These are all run last.

Required Methods§

Source

fn run(&self, name: &str, options: &mut T)

Runs the configuration.

§Arguments
  • name - The optional name of the options to configure
  • options - The options to configure

Implementors§

Source§

impl<F: Fn(&str, &mut T) + Sized, T> PostConfigure<T> for F