(mut self, session_id: &str)
| 107 | } |
| 108 | |
| 109 | pub fn with_session(mut self, session_id: &str) -> Self { |
| 110 | self.session_id = Some(session_id.to_string()); |
| 111 | self |
| 112 | } |
| 113 | |
| 114 | pub fn get(&self, key: &str) -> Option<&serde_json::Value> { |
| 115 | self.data.get(key) |
no outgoing calls
no test coverage detected