pub enum SvgElement {
Rect(SvgRect),
Circle(SvgCircle),
Script(SvgScript),
Group(SvgGroup),
Path(SvgPath),
Style(SvgStyle),
Use(SvgUse),
}Variants§
Rect(SvgRect)
Circle(SvgCircle)
Script(SvgScript)
Group(SvgGroup)
Path(SvgPath)
Style(SvgStyle)
Use(SvgUse)
Trait Implementations§
Source§impl From<SvgCircle> for SvgElement
impl From<SvgCircle> for SvgElement
Source§impl From<SvgGroup> for SvgElement
impl From<SvgGroup> for SvgElement
Source§impl From<SvgPath> for SvgElement
impl From<SvgPath> for SvgElement
Source§impl From<SvgRect> for SvgElement
impl From<SvgRect> for SvgElement
Source§impl From<SvgScript> for SvgElement
impl From<SvgScript> for SvgElement
Source§impl From<SvgStyle> for SvgElement
impl From<SvgStyle> for SvgElement
Auto Trait Implementations§
impl Freeze for SvgElement
impl RefUnwindSafe for SvgElement
impl Send for SvgElement
impl Sync for SvgElement
impl Unpin for SvgElement
impl UnwindSafe for SvgElement
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