Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/easy/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ impl List {
}

/// Returns an iterator over the nodes in this list.
pub fn iter(&self) -> Iter {
pub fn iter(&self) -> Iter<'_> {
Iter {
_me: self,
cur: self.raw,
Expand Down
2 changes: 1 addition & 1 deletion src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ impl Version {

/// Returns an iterator over the list of protocols that this build of
/// libcurl supports.
pub fn protocols(&self) -> Protocols {
pub fn protocols(&self) -> Protocols<'_> {
unsafe {
Protocols {
_inner: self,
Expand Down
Loading