pub struct WindowRow {
pub window_id: u32,
pub owner_name: String,
pub window_title: String,
pub x: i32,
pub y: i32,
pub width: i32,
pub height: i32,
pub on_screen: bool,
pub active: bool,
pub owner_pid: i32,
pub z_order: usize,
}Fields§
§window_id: u32§owner_name: String§window_title: String§x: i32§y: i32§width: i32§height: i32§on_screen: bool§active: bool§owner_pid: i32§z_order: usizeImplementations§
Trait Implementations§
Source§impl From<&WindowInfo> for WindowRow
impl From<&WindowInfo> for WindowRow
Source§fn from(window: &WindowInfo) -> Self
fn from(window: &WindowInfo) -> Self
Converts to this type from the input type.
impl Eq for WindowRow
impl StructuralPartialEq for WindowRow
Auto Trait Implementations§
impl Freeze for WindowRow
impl RefUnwindSafe for WindowRow
impl Send for WindowRow
impl Sync for WindowRow
impl Unpin for WindowRow
impl UnsafeUnpin for WindowRow
impl UnwindSafe for WindowRow
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more