[][src]Struct swayipc_command_builder::Filter

pub struct Filter<T = ()> { /* fields omitted */ }

Implementations

impl Filter[src]

pub fn new() -> Self[src]

impl<T: Finalize> Filter<T>[src]

pub fn app_id(self, value: impl AsRef<str>) -> Filter<Valid>[src]

pub fn class(self, value: impl AsRef<str>) -> Filter<Valid>[src]

pub fn con_id(self, value: impl AsRef<str>) -> Filter<Valid>[src]

pub fn con_mark(self, value: impl AsRef<str>) -> Filter<Valid>[src]

pub fn floating(self, value: impl AsRef<str>) -> Filter<Valid>[src]

pub fn id(self, value: impl AsRef<str>) -> Filter<Valid>[src]

pub fn instance(self, value: impl AsRef<str>) -> Filter<Valid>[src]

pub fn pid(self, value: impl AsRef<str>) -> Filter<Valid>[src]

pub fn shell(self, value: impl AsRef<str>) -> Filter<Valid>[src]

pub fn tiling(self, value: impl AsRef<str>) -> Filter<Valid>[src]

pub fn title(self, value: impl AsRef<str>) -> Filter<Valid>[src]

pub fn urgent(self, value: impl AsRef<str>) -> Filter<Valid>[src]

pub fn window_role(self, value: impl AsRef<str>) -> Filter<Valid>[src]

pub fn window_type(self, value: impl AsRef<str>) -> Filter<Valid>[src]

pub fn workspace(self, value: impl AsRef<str>) -> Filter<Valid>[src]

Trait Implementations

impl AsRef<str> for Filter<Valid>[src]

impl<T> Debug for Filter<T>[src]

impl Default for Filter[src]

impl Display for Filter<Valid>[src]

impl From<Filter<Valid<()>>> for String[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Filter<T> where
    T: RefUnwindSafe

impl<T> Send for Filter<T> where
    T: Send

impl<T> Sync for Filter<T> where
    T: Sync

impl<T> Unpin for Filter<T> where
    T: Unpin

impl<T> UnwindSafe for Filter<T> where
    T: UnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.