pub struct SvgReader {
pub xml: String,
/* private fields */
}Expand description
SVG file reader that extracts path data from SVG files.
Direct port from C++ SvgReader class.
Parses SVG <path> elements and extracts their coordinates.
Fields§
§xml: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SvgReader
impl RefUnwindSafe for SvgReader
impl Send for SvgReader
impl Sync for SvgReader
impl Unpin for SvgReader
impl UnwindSafe for SvgReader
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more