1 2 3 4 5 6 7 8 9 10 11 12
mod circle; mod line; mod polyline; pub use circle::Circle; pub use line::Line; pub use polyline::Polyline; pub trait Node { type Element: svg::Node; fn to_element(self) -> Self::Element; }