Struct tmux_interface::commands::windows_and_panes::display_panes::DisplayPanes[][src]

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

Display a visible indicator of each pane shown by target-client

Manual

tmux ^2.9:

tmux display-panes [-b] [-d duration] [-t target-client] [template]
(alias: displayp)

tmux ^2.6:

tmux display-panes [-d duration] [-t target-client] [template]
(alias: displayp)

tmux ^2.3:

tmux display-panes [-t target-client] [template]
(alias: displayp)

tmux ^1.0:

tmux display-panes [-t target-client]
(alias: displayp)

Implementations

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

pub fn new() -> Self[src]

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

[-d duration]

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

[-d duration]

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

[template]

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

Trait Implementations

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for DisplayPanes<'a>

impl<'a> Send for DisplayPanes<'a>

impl<'a> Sync for DisplayPanes<'a>

impl<'a> Unpin for DisplayPanes<'a>

impl<'a> UnwindSafe for DisplayPanes<'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.