Struct tmux_interface::commands::windows_and_panes::choose_client::ChooseClient[][src]

pub struct ChooseClient<'a>(pub TmuxCommand<'a>);

Put a pane into client mode, allowing a client to be selected interactively from a list

Manual

tmux ^3.1:

tmux choose-client [-NrZ] [-F format] [-f filter] [-O sort-order] [-t target-pane] [template]

tmux ^2.7:

tmux choose-client [-NZ] [-F format] [-f filter] [-O sort-order] [-t target-pane] [template]

tmux ^2.6:

tmux choose-client [-N] [-F format] [-f filter] [-O sort-order] [-t target-pane] [template]

tmux ^1.7:

tmux choose-client [-F format] [-t target-window] [template]

tmux ^1.0:

tmux choose-client  [-t target-window] [template]

Implementations

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

pub fn new() -> Self[src]

pub fn without_preview(&mut self) -> &mut Self[src]

[-N] - start without the preview

pub fn format<S: Into<Cow<'a, str>>>(&mut self, format: S) -> &mut Self[src]

[-F format] - format

pub fn filter<S: Into<Cow<'a, str>>>(&mut self, filter: S) -> &mut Self[src]

[-f filter] - specify an initial filter

pub fn sort_order<S: Into<Cow<'a, str>>>(&mut self, sort_order: S) -> &mut Self[src]

[-O sort-order] - specify the initial sort field

pub fn target_pane<S: Into<Cow<'a, str>>>(
    &mut self,
    target_pane: S
) -> &mut Self
[src]

[-t target-pane] - target-pane

pub fn template<S: Into<Cow<'a, str>>>(&mut self, template: S) -> &mut Self[src]

[template] - template

pub fn output(&self) -> Result<TmuxOutput, Error>[src]

Trait Implementations

impl<'a> Clone for ChooseClient<'a>[src]

impl<'a> Debug for ChooseClient<'a>[src]

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

impl<'a> From<&'_ TmuxCommand<'a>> for ChooseClient<'a>[src]

impl<'a> From<TmuxCommand<'a>> for ChooseClient<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ChooseClient<'a>

impl<'a> Send for ChooseClient<'a>

impl<'a> Sync for ChooseClient<'a>

impl<'a> Unpin for ChooseClient<'a>

impl<'a> UnwindSafe for ChooseClient<'a>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.