[][src]Struct magnesium::TagAttributeIterator

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

Iterator to walk through a tag's attribute string.

Supports both ' and " quoting around the attribute values.

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

Methods

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

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

Makes a new iterator over the attribute string.

Trait Implementations

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

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

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

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

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

type Item = TagAttribute<'s>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'s> Send for TagAttributeIterator<'s>

impl<'s> Sync for TagAttributeIterator<'s>

impl<'s> Unpin for TagAttributeIterator<'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.