(&self)
| 45 | } |
| 46 | |
| 47 | pub async fn full_name(&self) -> Result<String> { |
| 48 | match self { |
| 49 | Self::Default => Ok("Wiki".to_string()), |
| 50 | Self::Fetched { name, .. } => Ok(name.to_owned()), |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | pub async fn id(&self) -> ID { |
| 55 | match self { |
nothing calls this directly
no outgoing calls
no test coverage detected