1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
pub
pub
pub
pub
pub
pub
pub
pub
pub
pub
pub
pub
use crateSingleColor;
/// A trait representing a visual mark in a plot.
///
/// This trait defines the common interface for all visual marks that can be used
/// in plots, such as points, lines, bars, etc. Each mark type must implement
/// this trait to provide information about its visual properties.
///
/// The trait requires implementing types to also implement `Clone` to allow
/// for easy duplication of mark configurations.
///
/// # Required Methods
///
/// Implementors must provide:
/// - `mark_type`: Returns a string identifier for the mark type
///
/// # Provided Methods
///
/// Default implementations are provided for:
/// - `stroke`: Returns the stroke color (defaults to None)
/// - `shape`: Returns the point shape (defaults to Circle)
/// - `opacity`: Returns the opacity value (defaults to 1.0)