(&self, f: &mut std::fmt::Formatter<'_>)
| 98 | |
| 99 | impl Debug for RepositoryManager { |
| 100 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 101 | f.debug_struct("RepositoryManager") |
| 102 | .field("repositories", &self.repositories().to_vec()) |
| 103 | .finish() |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | impl ToOwned for RepositoryManager { |
nothing calls this directly
no test coverage detected