pub enum Mark {
Line(LineMark),
Rect(RectMark),
Point(PointMark),
Area(AreaMark),
Text(TextMark),
Arc(ArcMark),
Rule(RuleMark),
Path(PathMark),
Image(ImageMark),
}Expand description
A single visual mark (one of 9 primitives).
Variants§
Line(LineMark)
Polyline.
Rect(RectMark)
Rectangle.
Point(PointMark)
Scatter point.
Area(AreaMark)
Filled area.
Text(TextMark)
Text label.
Arc(ArcMark)
Arc/sector.
Rule(RuleMark)
Grid/reference lines.
Path(PathMark)
Bezier path.
Image(ImageMark)
Raster image.
Auto Trait Implementations§
impl Freeze for Mark
impl RefUnwindSafe for Mark
impl Send for Mark
impl Sync for Mark
impl Unpin for Mark
impl UnsafeUnpin for Mark
impl UnwindSafe for Mark
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