diff options
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 { |
