(&self)
| 36 | } |
| 37 | |
| 38 | async fn name(&self) -> &str { |
| 39 | match self { |
| 40 | Self::Wiki => "General", |
| 41 | Self::Selected { name, .. } => name, |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | async fn path(&self) -> String { |
| 46 | match self { |
nothing calls this directly
no outgoing calls
no test coverage detected