bodoni / svg

Composer and parser for SVG
Other
302 stars 44 forks source link

Add debug derive on Data #26

Closed kmkzt closed 4 years ago

kmkzt commented 4 years ago

Added debug derive because there was no it in Data.

スクリーンショット 2020-04-11 22 38 58

You can reproduce it by writing as follows.

use svg::node::element::path::Data;

#[derive(Debug, Clone)]
pub struct Example {
    data: Data
}
IvanUkhov commented 4 years ago

Thanks!