(&self)
| 284 | } |
| 285 | |
| 286 | pub fn current(&self) -> &Workspace { |
| 287 | &self.workspaces[self.current as usize] |
| 288 | } |
| 289 | |
| 290 | pub fn all_windows(&self) -> impl Iterator<Item = Ref<'_, Window>> { |
| 291 | self.workspaces.iter().flat_map(|w| w.windows()) |
no outgoing calls
no test coverage detected