Struct tmux_interface::commands::miscellaneous::if_shell::IfShell[][src]

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

Structure for conditional commands executing

Manual

tmux ^2.0:

tmux if-shell [-bF] [-t target-pane] shell-command command [command]
(alias: if)

tmux ^1.8:

tmux if-shell [-b] [-t target-pane] shell-command command [command]
(alias: if)

tmux ^1.6:

tmux if-shell shell-command command [command]
(alias: if)

tmux ^0.8:

tmux if-shell shell-command command
(alias: if)

Implementations

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

pub fn new() -> Self[src]

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

[-b] - run in the background

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

[-F] not execute but considered success if neither empty nor zero

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

[-t target-pane] specify the target-pane

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

[shell-command]

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

[command] - specify the second command

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

Trait Implementations

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for IfShell<'a>

impl<'a> Send for IfShell<'a>

impl<'a> Sync for IfShell<'a>

impl<'a> Unpin for IfShell<'a>

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