We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Assume I have:
struct A { a: String, b: String }
Can I effectively construct a method:
impl A { pub fn prometheus_label_values(&self) -> &[&str] { &[ self.a.as_str(), self.b.as_str() ] } }
To return arguments for with_label_values? It seems &[&str] argument type is too restrictive. Even declaring the lifetimes does not help.
with_label_values
&[&str]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Assume I have:
Can I effectively construct a method:
To return arguments for
with_label_values
? It seems&[&str]
argument type is too restrictive. Even declaring the lifetimes does not help.The text was updated successfully, but these errors were encountered: