[][src]Trait svgdom::FilterSvgAttrs

pub trait FilterSvgAttrs: Iterator {
    fn svg<'a>(
        self
    ) -> FilterMap<Self, fn(_: &Attribute) -> Option<(AttributeId, &Attribute)>>
    where
        Self: Iterator<Item = &'a Attribute> + Sized
, { ... } }

An iterator over SVG attributes.

Provided methods

fn svg<'a>(
    self
) -> FilterMap<Self, fn(_: &Attribute) -> Option<(AttributeId, &Attribute)>> where
    Self: Iterator<Item = &'a Attribute> + Sized

Filters SVG attributes.

Loading content...

Implementors

impl<'a, I: Iterator<Item = &'a Attribute>> FilterSvgAttrs for I[src]

fn svg<'a>(
    self
) -> FilterMap<Self, fn(_: &Attribute) -> Option<(AttributeId, &Attribute)>> where
    Self: Iterator<Item = &'a Attribute> + Sized
[src]

Loading content...