(&self, name: &str)
| 178 | /// Finds a struct definition by name. |
| 179 | #[cfg(feature = "structs")] |
| 180 | pub(crate) fn find_struct(&self, name: &str) -> Option<&StructDef> { |
| 181 | self.structs.get(name) |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | /// A definition for a custom struct type. |