pub trait WriteSvg {
// Required method
fn write_svg(
&self,
writer: &mut SvgWriter,
attr: &SvgTagAttributes,
) -> Result<()>;
}Expand description
Trait to write something into an SVG.
pub trait WriteSvg {
// Required method
fn write_svg(
&self,
writer: &mut SvgWriter,
attr: &SvgTagAttributes,
) -> Result<()>;
}Trait to write something into an SVG.