[][src]Struct leftwm::Workspace

pub struct Workspace {
    pub id: i32,
    pub tags: Vec<String>,
    pub avoid: Vec<XYHW>,
    pub xyhw: XYHW,
    // some fields omitted
}

Fields

id: i32tags: Vec<String>avoid: Vec<XYHW>xyhw: XYHW

Methods

impl Workspace[src]

pub fn new() -> Workspace[src]

pub fn from_screen(screen: &Screen) -> Workspace[src]

pub fn show_tag(&mut self, tag: String)[src]

pub fn contains_point(&self, x: i32, y: i32) -> bool[src]

pub fn has_tag(&self, tag: &str) -> bool[src]

pub fn next_layout(&mut self)[src]

pub fn prev_layout(&mut self)[src]

pub fn is_displaying(&self, window: &Window) -> bool[src]

pub fn update_windows(&self, windows: &mut Vec<&mut Window>)[src]

pub fn x(&self) -> i32[src]

pub fn y(&self) -> i32[src]

pub fn height(&self) -> i32[src]

pub fn width(&self) -> i32[src]

pub fn center_halfed(&self) -> XYHW[src]

pub fn update_avoided_areas(&mut self)[src]

Trait Implementations

impl PartialEq<Workspace> for Workspace[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Default for Workspace[src]

impl Clone for Workspace[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Workspace[src]

impl Serialize for Workspace[src]

impl<'de> Deserialize<'de> for Workspace[src]

Auto Trait Implementations

impl !Send for Workspace

impl !Sync for Workspace

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T