We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e476706 commit 117b9cfCopy full SHA for 117b9cf
p4/src/ast.rs
@@ -47,7 +47,10 @@ impl AST {
47
self.parsers.iter().find(|&p| p.name == name)
48
}
49
50
- pub fn get_user_defined_type(&self, name: &str) -> Option<UserDefinedType> {
+ pub fn get_user_defined_type(
51
+ &self,
52
+ name: &str,
53
+ ) -> Option<UserDefinedType<'_>> {
54
if let Some(user_struct) = self.get_struct(name) {
55
return Some(UserDefinedType::Struct(user_struct));
56
rust-toolchain.toml
@@ -1,3 +1,3 @@
1
[toolchain]
2
-channel = "1.86.0"
+channel = "1.92.0"
3
profile = "default"
0 commit comments