(mut self, key: impl Into<String>, value: serde_json::Value)
| 239 | } |
| 240 | |
| 241 | pub fn with_metadata(mut self, key: impl Into<String>, value: serde_json::Value) -> Self { |
| 242 | self.metadata.insert(key.into(), value); |
| 243 | self |
| 244 | } |
| 245 | |
| 246 | pub fn with_always(mut self, always: impl Into<String>) -> Self { |
| 247 | self.always.push(always.into()); |
no outgoing calls
no test coverage detected