x-win 5.6.1

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.
Documentation
#![deny(unused_imports)]

/**
 * Struct to store Icon information
 */
#[derive(Debug, Clone)]
#[repr(C)]
pub struct IconInfo {
  pub data: String,
  pub height: u32,
  pub width: u32,
}

impl IconInfo {
  pub fn new(data: String, height: u32, width: u32) -> Self {
    Self {
      data,
      height,
      width,
    }
  }
}