Get a mutable session by ID
(&mut self, id: &str)
| 1026 | |
| 1027 | /// Get a mutable session by ID |
| 1028 | pub fn get_mut(&mut self, id: &str) -> Option<&mut Session> { |
| 1029 | self.sessions.get_mut(id) |
| 1030 | } |
| 1031 | |
| 1032 | /// List all sessions |
| 1033 | pub fn list(&self) -> Vec<&Session> { |
no outgoing calls
no test coverage detected