pub trait ConfigureOptions<T> {
    fn configure(&self, name: Option<&str>, options: &mut T);
}
Expand description

Defines the behavior of something that configures options.

Remarks

These are all run first

Required Methods

Configures the corresponding options.

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

Implementors