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

Defines the behavior of something that configures Options.

Remarks

These are all run last

Required Methods§

source

fn post_configure(&self, name: Option<&str>, options: &mut T)

Configures the corresponding options.

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

Implementors§