From 1d77fc3074da561413a19622a25dcb325c2ea6d6 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Tue, 24 Jun 2025 18:14:43 -0400 Subject: [Rust] Fix ParsedType fields being private --- rust/src/type_parser.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rust/src') diff --git a/rust/src/type_parser.rs b/rust/src/type_parser.rs index 13985c44..8ad0725f 100644 --- a/rust/src/type_parser.rs +++ b/rust/src/type_parser.rs @@ -442,9 +442,9 @@ impl TypeParserResult { #[derive(Debug, Clone, Eq, PartialEq)] pub struct ParsedType { - name: QualifiedName, - ty: Ref, - user: bool, + pub name: QualifiedName, + pub ty: Ref, + pub user: bool, } impl ParsedType { -- cgit v1.3.1