(&self, f: &mut std::fmt::Formatter<'_>)
| 117 | |
| 118 | impl Debug for ProjectFile { |
| 119 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 120 | f.debug_struct("ProjectFile") |
| 121 | .field("id", &self.id()) |
| 122 | .field("name", &self.name()) |
| 123 | .field("description", &self.description()) |
| 124 | .field("creation_time", &self.creation_time()) |
| 125 | .field("exists_on_disk", &self.exists_on_disk()) |
| 126 | .field("project", &self.project()) |
| 127 | .field("folder", &self.folder()) |
| 128 | .finish() |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | impl ToOwned for ProjectFile { |
nothing calls this directly
no test coverage detected