Trait lifeguard::settings::OptionSetter [] [src]

pub trait OptionSetter<T> {
    fn set_option(self, T) -> T;
}

Implementing this trait allows a struct to act as a configuration parameter in the builder API.

Required Methods

fn set_option(self, T) -> T

Implementors