Struct magnesium::ElementIterator[][src]

pub struct ElementIterator<'s> { /* fields omitted */ }

An iterator to walk the elements of some XML data.

This gives you all the elements processed, even a bunch of empty XmlElement::Text elements and XmlElement::Comment elements that you might not care about. You can use filter_map to help keep these away from your main processing code. The crate provides two filter_map compatible functions for you: skip_empty_text_elements and skip_comments filters for you.

The parsing is a little simplistic, and if the iterator gets confused by the input it will just end the iteration.

Implementations

impl<'s> ElementIterator<'s>[src]

#[must_use]pub fn new(text: &'s str) -> Self[src]

Makes a new iterator.

This works both with and without the initial XML declaration in the string. The declaration won't be in the iteration either way.

Trait Implementations

impl<'s> Clone for ElementIterator<'s>[src]

impl<'s> Debug for ElementIterator<'s>[src]

impl<'s> Default for ElementIterator<'s>[src]

impl<'s> FusedIterator for ElementIterator<'s>[src]

impl<'s> Iterator for ElementIterator<'s>[src]

type Item = XmlElement<'s>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'s> Send for ElementIterator<'s>[src]

impl<'s> Sync for ElementIterator<'s>[src]

impl<'s> Unpin for ElementIterator<'s>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.