(&self, f: &mut std::fmt::Formatter<'_>)
| 74 | |
| 75 | impl Debug for Repository { |
| 76 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 77 | f.debug_struct("Repository") |
| 78 | .field("url", &self.url()) |
| 79 | .field("path", &self.path()) |
| 80 | .field("full_path", &self.full_path()) |
| 81 | .field("plugins", &self.plugins().to_vec()) |
| 82 | .finish() |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | impl ToOwned for Repository { |