Trait svgdom::FilterSvgAttrsMut[][src]

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

An iterator over SVG attributes.

Provided Methods

Important traits for FilterMap<I, F>

Filters SVG attributes.

Implementors