Trait Selector
Source pub trait Selector {
// Required methods
fn is_valid(&self) -> bool;
fn extract(&self) -> &str;
fn kind(&self) -> &str;
}
Checks if given selector is valid.
Extracts selector from wrapper.
Returns kind of selector, i.e. Node, Desktop or Monitor.