(self)
| 60 | match self { |
| 61 | Self::Demo => "demo workspace", |
| 62 | Self::Lessons => "lessons", |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | fn memory_workspace(self) -> std::io::Result<IdeWorkspace> { |
| 67 | match self { |
| 68 | Self::Demo => IdeWorkspace::sample(), |
| 69 | Self::Lessons => IdeWorkspace::lessons(), |
| 70 | } |
| 71 | } |
| 72 | } |