This package allows you to retrieve precise information about active and open windows on Windows, MacOS, and Linux. You can obtain the position, size, title, and other memory of windows.
#![deny(unused_imports)]/**
* Struct to store usage data of the window
*/#[derive(Debug, Clone)]pubstructUsageInfo{pubmemory:u32,
}implUsageInfo{pubfnnew(memory:u32)->Self{Self{ memory }}}