Functions§
- field_
ident - normalize_
ident - query_
params_ name - query_
row_ name - to_
pascal_ case - to_
snake_ case - type_
ident - variant_
ident - For enum variants: PascalCase with keyword escaping.
Converts
valto PascalCase, then checks whether the result would collide with a Rust keyword by checking both the PascalCase form and its snake_case equivalent against the keyword list. Example: “type” → PascalCase “Type” → snake “type” → keyword → emitsr#Type.