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 87a443a commit 1ca868fCopy full SHA for 1ca868f
Cargo.toml
@@ -1,4 +1,5 @@
1
[workspace]
2
+resolver = "2"
3
members = [
4
"poem-derive",
5
"poem",
poem-openapi/src/base.rs
@@ -43,7 +43,7 @@ impl Deref for UrlQuery {
43
44
impl UrlQuery {
45
/// Returns all values with the specified name.
46
- pub fn get_all<'a>(&'a self, name: &'a str) -> impl Iterator<Item = &'a String> + 'a {
+ pub fn get_all<'a, 'b: 'a>(&'b self, name: &'a str) -> impl Iterator<Item = &'b String> + 'a {
47
self.0
48
.iter()
49
.filter(move |(n, _)| n == name)
0 commit comments