pub enum SvgContent {
Svg(Vec<(String, String)>),
Circle(Vec<(String, String)>),
Ellipse(Vec<(String, String)>),
Rect(Vec<(String, String)>),
Line(Vec<(String, String)>),
Text(String),
}
Expand description
Enum for svg file content
Variants§
Svg(Vec<(String, String)>)
Circle(Vec<(String, String)>)
Ellipse(Vec<(String, String)>)
Rect(Vec<(String, String)>)
Line(Vec<(String, String)>)
Text(String)
Trait Implementations§
Source§impl Debug for SvgContent
impl Debug for SvgContent
Source§impl PartialEq for SvgContent
impl PartialEq for SvgContent
Source§impl ToString for SvgContent
impl ToString for SvgContent
impl Eq for SvgContent
impl StructuralPartialEq for SvgContent
Auto Trait Implementations§
impl Freeze for SvgContent
impl RefUnwindSafe for SvgContent
impl Send for SvgContent
impl Sync for SvgContent
impl Unpin for SvgContent
impl UnwindSafe for SvgContent
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