pub trait MonitorHandleExtMacOS {
    fn native_id(&self) -> u32;
    fn ns_screen(&self) -> Option<*mut c_void>;
}
Expand description

Additional methods on MonitorHandle that are specific to MacOS.

Required Methods

Returns the identifier of the monitor for Cocoa.

Returns a pointer to the NSScreen representing this monitor.

Implementors