(&self, f: &mut fmt::Formatter<'_>)
| 15 | |
| 16 | impl fmt::Display for RepositoryProvider { |
| 17 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 18 | match self { |
| 19 | RepositoryProvider::GitHub => write!(f, "Github"), |
| 20 | RepositoryProvider::GitLab => write!(f, "Gitlab"), |
| 21 | RepositoryProvider::Project => write!(f, "Project"), |
| 22 | } |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | #[derive(Deserialize, Serialize, Debug, Clone, PartialEq)] |
nothing calls this directly
no outgoing calls
no test coverage detected