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