Skip to content
Merged
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
5 changes: 0 additions & 5 deletions src/element_ref/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
//! Element references.

use std::fmt;
use std::iter::FusedIterator;
use std::ops::Deref;

use ego_tree::iter::{Edge, Traverse};
Expand Down Expand Up @@ -175,8 +174,6 @@ impl<'a, 'b> Iterator for Select<'a, 'b> {
}
}

impl FusedIterator for Select<'_, '_> {}

/// Iterator over descendent text nodes.
#[derive(Debug, Clone)]
pub struct Text<'a> {
Expand All @@ -198,8 +195,6 @@ impl<'a> Iterator for Text<'a> {
}
}

impl FusedIterator for Text<'_> {}

mod element;
mod serializable;

Expand Down