Skip to content

Commit 9e8353f

Browse files
committed
Merge pull request #102 from dcampbell24/Fix-RFC-1214
Implementors of IteratorClonedPairwiseExt must implement Sized
2 parents 7052d43 + b669a60 commit 9e8353f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xml-rs"
3-
version = "0.1.25"
3+
version = "0.1.26"
44
authors = ["Vladimir Matveev <[email protected]>"]
55
license = "MIT"
66
description = "An XML library in pure Rust"

src/util.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ impl<T: ?Sized, U> OptionBorrowExt<T> for Option<U> where U: Borrow<T> {
1111
}
1212
}
1313

14-
pub trait IteratorClonedPairwiseExt {
14+
pub trait IteratorClonedPairwiseExt: Sized {
1515
fn cloned_pairwise(self) -> ClonedPairwise<Self>;
1616
}
1717

0 commit comments

Comments
 (0)