(&self)
| 37 | } |
| 38 | |
| 39 | async fn display_name(&self) -> String { |
| 40 | match self { |
| 41 | Self::Default => DEFAULT_REPOSITORY_NAME, |
| 42 | Self::Fetched { name, .. } => name, |
| 43 | } |
| 44 | .to_string() |
| 45 | } |
| 46 | |
| 47 | pub async fn full_name(&self) -> Result<String> { |
| 48 | match self { |
nothing calls this directly
no outgoing calls
no test coverage detected