diff --git a/packages/quicktype-core/src/language/Rust.ts b/packages/quicktype-core/src/language/Rust.ts index 3e3a3b89b..93b0a1b33 100644 --- a/packages/quicktype-core/src/language/Rust.ts +++ b/packages/quicktype-core/src/language/Rust.ts @@ -203,10 +203,7 @@ const keywords = [ "default", "dyn", "'static", - "union", - - // Conflict between `std::Option` and potentially generated Option - "option" + "union" ]; const isAsciiLetterOrUnderscoreOrDigit = (codePoint: number): boolean => {