Trait svgdom::FilterSvgAttrs [] [src]

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

Important traits for FilterMap<I, F>

Filters SVG attributes.

Implementors