pub struct ActiveWindowInfo {
pub id: String,
pub title: String,
pub class_name: String,
pub pid: u32,
pub x: f64,
pub y: f64,
pub width: f64,
pub height: f64,
}Fields§
§id: String§title: String§class_name: String§pid: u32§x: f64§y: f64§width: f64§height: f64Trait Implementations§
Source§impl Clone for ActiveWindowInfo
impl Clone for ActiveWindowInfo
Source§fn clone(&self) -> ActiveWindowInfo
fn clone(&self) -> ActiveWindowInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ActiveWindowInfo
impl Debug for ActiveWindowInfo
Source§impl<'de> Deserialize<'de> for ActiveWindowInfo
impl<'de> Deserialize<'de> for ActiveWindowInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ActiveWindowInfo
impl RefUnwindSafe for ActiveWindowInfo
impl Send for ActiveWindowInfo
impl Sync for ActiveWindowInfo
impl Unpin for ActiveWindowInfo
impl UnsafeUnpin for ActiveWindowInfo
impl UnwindSafe for ActiveWindowInfo
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