Identifier for a point in a series.
| 112 | #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] |
| 113 | /// Identifier for a point in a series. |
| 114 | pub struct PointId { |
| 115 | /// ID of the series |
| 116 | pub series_id: ShapeId, |
| 117 | /// Index within the series [0..len) |
| 118 | pub point_index: usize, |
| 119 | } |
| 120 | |
| 121 | /// The hover or pick event. |
| 122 | #[derive(Debug, Clone, Copy)] |
nothing calls this directly
no outgoing calls
no test coverage detected