(
&self,
config_option: &options::ConfigOption<'a, OV>,
value: options::Value,
)
| 759 | } |
| 760 | |
| 761 | pub fn set_option<'a, OV: OptionType<'a>>( |
| 762 | &self, |
| 763 | config_option: &options::ConfigOption<'a, OV>, |
| 764 | value: options::Value, |
| 765 | ) -> Result<()> { |
| 766 | self.set_option_str(config_option.name(), value)?; |
| 767 | Ok(()) |
| 768 | } |
| 769 | } |
| 770 | |
| 771 | impl<S, I, O> ConfiguredPlugin<S, I, O> |
nothing calls this directly
no test coverage detected