[][src]Struct tmux_interface::windows_and_panes::FindWindow

pub struct FindWindow<'a> {
    pub only_visible: Option<bool>,
    pub only_name: Option<bool>,
    pub only_title: Option<bool>,
    pub zoom: Option<bool>,
    pub target_pane: Option<&'a str>,
    pub match_string: &'a str,
}

Search for the fnmatch(3) pattern match-string in window names, titles, and visible content (but not history)

Manual

tmux find-window [-CNTZ] [-t target-pane] match-string
(alias: findw)

Fields

only_visible: Option<bool>only_name: Option<bool>only_title: Option<bool>zoom: Option<bool>target_pane: Option<&'a str>match_string: &'a str

Methods

impl<'a> FindWindow<'a>[src]

pub fn new() -> FindWindow<'a>[src]

Trait Implementations

impl<'a> Default for FindWindow<'a>[src]

Auto Trait Implementations

impl<'a> Sync for FindWindow<'a>

impl<'a> Unpin for FindWindow<'a>

impl<'a> Send for FindWindow<'a>

impl<'a> UnwindSafe for FindWindow<'a>

impl<'a> RefUnwindSafe for FindWindow<'a>

Blanket Implementations

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

impl<T> From<T> for T[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.

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

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

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