Trait ConfigureOptions
Source pub trait ConfigureOptions<T> {
// Required method
fn configure(&self, name: Option<&str>, options: &mut T);
}
Expand description
Defines the behavior of something that configures Options
.
These are all run first
Configures the corresponding options.
§Arguments
name
- The optional name of the options to configure
options
- The options to configure