(&self)
| 45 | } |
| 46 | |
| 47 | pub async fn is_guest(&self) -> bool { |
| 48 | match self { |
| 49 | Self::Guest => true, |
| 50 | Self::Registered { .. } => false, |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | pub async fn name(&self) -> String { |
| 55 | match self { |
nothing calls this directly
no outgoing calls
no test coverage detected