[][src]Struct magnesium::ElementIterator

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

An iterator to walk the elements of some XML data.

This gives you basically all the element entries. It's highly likely that you want to chain a call to filter_map onto this iterator for simplified processing. The crate provides the skip_empty_text_elements and skip_comments filters for you.

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

Methods

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

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

Makes a new iterator over the elements.

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

Panics

  • This calls try_new and then unwraps.

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

Makes a new iterator over the elements.

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

Failure

  • If the text has an XML declaration that opens but doesn't close, this fails.

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>

impl<'s> Sync for ElementIterator<'s>

impl<'s> Unpin for ElementIterator<'s>

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.