(&self, session_id: &str, turn_id: &str)
| 174 | } |
| 175 | |
| 176 | pub fn take(&self, session_id: &str, turn_id: &str) -> bool { |
| 177 | self.inner |
| 178 | .remove(&(session_id.to_string(), turn_id.to_string())) |
| 179 | .is_some() |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | #[derive(Debug, Default)] |
no test coverage detected