1 2 3 4 5 6 7 8 9
use std::ffi::c_void; /// The window handle. #[repr(transparent)] pub struct WindowHandle { pub(crate) inner: *mut c_void, } unsafe impl Send for WindowHandle {}