You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lifetimes are named with 'ident, where ident is the name of the
11
+
lifetime or loop. The `_` character, which represents the ignore pattern,
12
+
cannot be used because it is a reserved lifetime name.
13
+
To fix this, use a single lowercase letter as the
14
+
lifetime identifier, such as `'a`. For more information, see [The Rust Book](https://doc.rust-lang.org/stable/book/appendix-02-operators.html#non-operator-symbols).
0 commit comments