(self)
| 1725 | |
| 1726 | impl DocsCatalogEntryBuilder { |
| 1727 | fn finish(self) -> Option<DocsCatalogEntry> { |
| 1728 | Some(DocsCatalogEntry { |
| 1729 | name: self.name?, |
| 1730 | import_path: self.import_path?, |
| 1731 | import_name: self.import_name?, |
| 1732 | tags: self.tags, |
| 1733 | size: self.size, |
| 1734 | }) |
| 1735 | } |
| 1736 | } |
| 1737 | |
| 1738 | #[derive(Debug, Clone, Default, Serialize, Deserialize, PartialEq, Eq)] |
no outgoing calls
no test coverage detected