1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
use super::*;
use std::fmt::{Debug, Formatter};

// impl Default for UseCursor {
//     fn default() -> Self {
//         Self {
//             data: None,
//             listen_mouse_move: None
//         }
//     }
// }

impl Debug for UseCursor {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        todo!()
    }
}