Trait alcibiades::SetOption [] [src]

pub trait SetOption {
    fn options() -> Vec<(String, OptionDescription)> { ... }
    fn set_option(name: &str, value: &str) { ... }
}

A trait for announcing and changing configuration options.

Provided Methods

Returns a list of supported configuration options (name and description).

Sets a new value for a given configuration option.

Does nothing if called with unsupported option name.

Implementors