(&self, f: &mut std::fmt::Formatter<'_>)
| 686 | |
| 687 | impl Debug for Project { |
| 688 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 689 | f.debug_struct("Project") |
| 690 | .field("id", &self.id()) |
| 691 | .field("name", &self.name()) |
| 692 | .field("description", &self.description()) |
| 693 | .finish() |
| 694 | } |
| 695 | } |
| 696 | |
| 697 | impl ToOwned for Project { |
nothing calls this directly
no test coverage detected