Skip to content

Commit 1d77fc3

Browse files
committed
[Rust] Fix ParsedType fields being private
1 parent 6eac30d commit 1d77fc3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rust/src/type_parser.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -442,9 +442,9 @@ impl TypeParserResult {
442442

443443
#[derive(Debug, Clone, Eq, PartialEq)]
444444
pub struct ParsedType {
445-
name: QualifiedName,
446-
ty: Ref<Type>,
447-
user: bool,
445+
pub name: QualifiedName,
446+
pub ty: Ref<Type>,
447+
pub user: bool,
448448
}
449449

450450
impl ParsedType {

0 commit comments

Comments
 (0)