(mut self, key: &str, value: serde_json::Value)
| 102 | } |
| 103 | |
| 104 | pub fn with_data(mut self, key: &str, value: serde_json::Value) -> Self { |
| 105 | self.data.insert(key.to_string(), value); |
| 106 | self |
| 107 | } |
| 108 | |
| 109 | pub fn with_session(mut self, session_id: &str) -> Self { |
| 110 | self.session_id = Some(session_id.to_string()); |
no outgoing calls
no test coverage detected