| 63 | /// Payload for the small cursor-position overlay shown in the corner. |
| 64 | #[derive(Debug, Clone)] |
| 65 | pub struct CursorPositionUiPayload { |
| 66 | /// World/data-space coordinates for the cursor |
| 67 | pub x: f64, |
| 68 | pub y: f64, |
| 69 | /// Formatted text to render |
| 70 | pub text: String, |
| 71 | } |
| 72 | |
| 73 | #[derive(Debug, Clone)] |
| 74 | #[doc(hidden)] |
nothing calls this directly
no outgoing calls
no test coverage detected