(&self)
| 22 | #[Object] |
| 23 | impl Organization { |
| 24 | async fn login(&self) -> &str { |
| 25 | match self { |
| 26 | Self::Wiki => "wiki", |
| 27 | Self::Selected { login, .. } => login, |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | async fn id(&self) -> ID { |
| 32 | match self { |
nothing calls this directly
no outgoing calls
no test coverage detected