(mut self, always: impl Into<String>)
| 244 | } |
| 245 | |
| 246 | pub fn with_always(mut self, always: impl Into<String>) -> Self { |
| 247 | self.always.push(always.into()); |
| 248 | self |
| 249 | } |
| 250 | |
| 251 | pub fn always_allow(mut self) -> Self { |
| 252 | self.always.push("*".to_string()); |