1 2 3 4 5 6 7
use svg::node::element::SVG; /// Mark a type that can be convert to svg pub trait ToSVG3D { /// Convert to svg by reference fn to_svg(&self) -> SVG; }