usecore::ffi::c_void;usecore::ptr;/// Raw window handle for the Redox operating system.
////// ## Construction
/// ```
/// # use raw_window_handle::OrbitalHandle;
/// let mut handle = OrbitalHandle::empty();
/// /* set fields */
/// ```
#[non_exhaustive]#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]pubstructOrbitalHandle{/// A pointer to an orbclient window.
pubwindow:*mut c_void,
}implOrbitalHandle{pubfnempty()->Self{Self{
window:ptr::null_mut(),}}}