(mut self, name: S)
| 266 | } |
| 267 | |
| 268 | pub fn name<S>(mut self, name: S) -> Self |
| 269 | where |
| 270 | S: Into<Cow<'static, str>>, |
| 271 | { |
| 272 | self.name = Some(name.into()); |
| 273 | self |
| 274 | } |
| 275 | |
| 276 | pub fn tags<T>(mut self, tags: T) -> Self |
| 277 | where |
no test coverage detected