pub trait MonitorIdExt {
    fn native_id(&self) -> String;
    fn hmonitor(&self) -> *mut c_void;
}
Expand description

Additional methods on MonitorId that are specific to Windows.

Required Methods

Returns the name of the monitor adapter specific to the Win32 API.

Returns the handle of the monitor - HMONITOR.

Implementors