(&self)
| 1130 | |
| 1131 | impl VmWorkDir { |
| 1132 | pub fn instance_info(&self) -> Result<InstanceInfo> { |
| 1133 | let info_file = self.instance_info_path(); |
| 1134 | let info: InstanceInfo = serde_json::from_slice(&fs::read(&info_file)?)?; |
| 1135 | Ok(info) |
| 1136 | } |
| 1137 | |
| 1138 | pub fn app_compose(&self) -> Result<AppCompose> { |
| 1139 | let compose_file = self.app_compose_path(); |
no test coverage detected