Trait geo_svg::CombineToSVG

source ·
pub trait CombineToSVG {
    // Required method
    fn combine_to_svg(&self) -> Option<Svg<'_>>;
}
Expand description

This trait let’s you combine multiple things that can be converted to a SVG into one big compound SVG

Required Methods§

source

fn combine_to_svg(&self) -> Option<Svg<'_>>

Implementations on Foreign Types§

source§

impl<S: ToSvg> CombineToSVG for &[S]

source§

impl<S: ToSvg> CombineToSVG for Vec<S>

Implementors§