pub struct Info {
pub id: u32,
pub name: String,
pub compositing: bool,
pub root_win_id: u32,
pub work_area: (u32, u32),
pub screen_size: (u32, u32),
pub desktops: u32,
pub supported: HashMap<u32, String>,
}Expand description
Info provides information about the window manager and its environment.
Fields§
§id: u32§name: String§compositing: bool§root_win_id: u32§work_area: (u32, u32)§screen_size: (u32, u32)§desktops: u32§supported: HashMap<u32, String>Auto Trait Implementations§
impl Freeze for Info
impl RefUnwindSafe for Info
impl Send for Info
impl Sync for Info
impl Unpin for Info
impl UnwindSafe for Info
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