1#[derive(Debug)] 2pub enum CursorStyle { 3 Default, 4 Hidden, 5 Url { 6 data: String, 7 hotspot_x: u16, 8 hotspot_y: u16, 9 }, 10}