| 120 | |
| 121 | #[derive(Debug, Serialize, Deserialize)] |
| 122 | pub struct TreeInfo { |
| 123 | #[serde(rename = "displayName")] |
| 124 | pub display_name: String, |
| 125 | #[serde(rename = "fsPath")] |
| 126 | pub fs_path: String, |
| 127 | pub uri: String, |
| 128 | pub repository: RepositoryInfo, |
| 129 | } |
| 130 | |
| 131 | #[derive(Debug, Serialize, Deserialize)] |
| 132 | pub struct RepositoryInfo { |
nothing calls this directly
no outgoing calls
no test coverage detected