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
, { ... } }
Expand description

An iterator over SVG attributes.

Provided Methods

Filters SVG attributes.

Implementors