Struct tmux_interface::commands::windows_and_panes::respawn_pane::RespawnPane[][src]

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

Reactivate a pane in which the command has exited

Manual

tmux ^3.0:

tmux respawn-pane [-k] [-c start-directory] [-e environment] [-t target-pane] [shell-command]
(alias: respawnp)

tmux ^2.6:

tmux respawn-pane [-k] [-c start-directory] [-t target-pane] [shell-command]
(alias: respawnp)

tmux ^1.5:

tmux respawn-pane [-k] [-t target-pane] [shell-command]
(alias: respawnp)

Implementations

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

pub fn new() -> Self[src]

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

[-k] - any existing command is killed

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

[-c start-directory] - start-directory

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

[-t target-pane] - target-pane

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

[shell-command] - shell-command

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

Trait Implementations

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for RespawnPane<'a>

impl<'a> Send for RespawnPane<'a>

impl<'a> Sync for RespawnPane<'a>

impl<'a> Unpin for RespawnPane<'a>

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