(&self, session_id: &str)
| 132 | } |
| 133 | |
| 134 | pub fn remove(&self, session_id: &str) -> Option<ActiveDialogTurn> { |
| 135 | self.inner.remove(session_id).map(|(_, turn)| turn) |
| 136 | } |
| 137 | |
| 138 | pub fn contains(&self, session_id: &str) -> bool { |
| 139 | self.inner.contains_key(session_id) |
no outgoing calls