(&self)
| 52 | } |
| 53 | |
| 54 | pub async fn name(&self) -> String { |
| 55 | match self { |
| 56 | Self::Guest => "Guest".to_owned(), |
| 57 | Self::Registered { name, .. } => name.to_owned(), |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | pub async fn repos( |
| 62 | &self, |
nothing calls this directly
no outgoing calls
no test coverage detected