diff options
| author | Mason Reed <mason@vector35.com> | 2025-06-24 18:14:43 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-06-24 18:14:43 -0400 |
| commit | 1d77fc3074da561413a19622a25dcb325c2ea6d6 (patch) | |
| tree | 66c2d6ed6bcf62d8e6892f35d154e07c102c71e5 /rust/src | |
| parent | 6eac30d6885f0602e907ced87d35575f62da74b7 (diff) | |
[Rust] Fix ParsedType fields being private
Diffstat (limited to 'rust/src')
| -rw-r--r-- | rust/src/type_parser.rs | 6 |
1 files changed, 3 insertions, 3 deletions
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<Type>, - user: bool, + pub name: QualifiedName, + pub ty: Ref<Type>, + pub user: bool, } impl ParsedType { |
