(
mut self,
opt: options::ConfigOption<'a, V>,
)
| 148 | } |
| 149 | |
| 150 | pub fn option<'a, V: options::OptionType<'a>>( |
| 151 | mut self, |
| 152 | opt: options::ConfigOption<'a, V>, |
| 153 | ) -> Builder<S, I, O> { |
| 154 | self.options.insert(opt.name().to_string(), opt.build()); |
| 155 | self |
| 156 | } |
| 157 | |
| 158 | pub fn notification(mut self, notif: messages::NotificationTopic) -> Builder<S, I, O> { |
| 159 | self.notifications.push(notif); |
no test coverage detected