(&self, session_id: &str)
| 224 | } |
| 225 | |
| 226 | pub fn clear_session(&self, session_id: &str) { |
| 227 | if let Some(states) = self.session_states.get(session_id) { |
| 228 | states.clear(); |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | pub fn set(&self, session_id: &str, logical_path: &str, state: FileReadState) { |
| 233 | let session_states = self |