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.
'static
1 parent ae98eb0 commit fabc977Copy full SHA for fabc977
src/lib.rs
@@ -84,7 +84,8 @@ impl Symbol {
84
/// Each variant is represented by a tuple `(modifiers, value, deprecation)`.
85
pub fn variants(
86
&self,
87
- ) -> impl Iterator<Item = (ModifierSet<&str>, &'static str, Option<&str>)> {
+ ) -> impl Iterator<Item = (ModifierSet<&'static str>, &'static str, Option<&'static str>)>
88
+ {
89
enum Variants {
90
Single(std::iter::Once<&'static str>),
91
Multi(
0 commit comments