Convert an IDL name to a sanitized Rust snake_case identifier.
(self, source: str)
| 161 | return normalized |
| 162 | |
| 163 | def to_rust_snake(self, source: str) -> str: |
| 164 | """Convert an IDL name to a sanitized Rust snake_case identifier.""" |
| 165 | return self.sanitize_identifier(self.to_snake_case(source)) |
| 166 | |
| 167 | def get_top_level_module_identifier(self, package: Optional[str]) -> str: |
| 168 | """Get the Rust module identifier used to reference one schema file.""" |
no test coverage detected