MCPcopy Index your code
hub / github.com/github/copilot-sdk / safeRustFieldName

Function safeRustFieldName

scripts/codegen/rust.ts:192–195  ·  view source on GitHub ↗
(name: string)

Source from the content-addressed store, hash-verified

190]);
191
192function safeRustFieldName(name: string): string {
193 const snake = toRustFieldName(name);
194 return RUST_KEYWORDS.has(snake) ? `r#${snake}` : snake;
195}
196
197// ── Codegen context ─────────────────────────────────────────────────────────
198

Callers 1

emitRustStructFunction · 0.85

Calls 1

toRustFieldNameFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…