[][src]Trait svgdom::FilterSvg

pub trait FilterSvg: Iterator {
    fn svg(self) -> FilterMap<Self, fn(_: Node) -> Option<(ElementId, Node)>>
    where
        Self: Iterator<Item = Node> + Sized
, { ... } }

An iterator over SVG elements.

Provided methods

fn svg(self) -> FilterMap<Self, fn(_: Node) -> Option<(ElementId, Node)>> where
    Self: Iterator<Item = Node> + Sized

Filters SVG elements.

Loading content...

Implementors

impl<'a, I: Iterator<Item = Node>> FilterSvg for I[src]

fn svg(self) -> FilterMap<Self, fn(_: Node) -> Option<(ElementId, Node)>> where
    Self: Iterator<Item = Node> + Sized
[src]

Loading content...