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 c06de2a commit f19936fCopy full SHA for f19936f
src/easy/list.rs
@@ -46,7 +46,7 @@ impl List {
46
}
47
48
/// Returns an iterator over the nodes in this list.
49
- pub fn iter(&self) -> Iter {
+ pub fn iter(&self) -> Iter<'_> {
50
Iter {
51
_me: self,
52
cur: self.raw,
src/version.rs
@@ -203,7 +203,7 @@ impl Version {
203
204
/// Returns an iterator over the list of protocols that this build of
205
/// libcurl supports.
206
- pub fn protocols(&self) -> Protocols {
+ pub fn protocols(&self) -> Protocols<'_> {
207
unsafe {
208
Protocols {
209
_inner: self,
0 commit comments