Struct tmux_interface::commands::windows_and_panes::break_pane::BreakPane[][src]

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

Break src-pane off from its containing window to make it the only pane in dst-window

Manual

tmux ^2.4:

tmux break-pane [-dP] [-F format] [-n window-name] [-s src-pane] [-t dst-window]
(alias: breakp)

tmux ^2.2:

tmux break-pane [-dP] [-F format] [-s src-pane] [-t dst-window]
(alias: breakp)

tmux ^2.1:

tmux break-pane [-dP] [-F format] [-s src-pane] [-t dst-pane]
(alias: breakp)

tmux ^1.7:

tmux break-pane [-dP] [-F format] [-t target-pane]
(alias: breakp)

tmux ^1.0:

tmux break-pane [-d] [-t target-window]
(alias: breakp)

tmux ^0.8:

tmux break-pane [-d] [-p pane-index] [-t target-window]
(alias: breakp)

Implementations

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

pub fn new() -> Self[src]

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

[-d] - the new window does not become the current window

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

[-P] - option prints information about the new window after it has been created

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

[-F format] - specify format

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

[-n] - window-name

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

[-s src-pane] - src-pane

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

[-t dst-window] - dst-window

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

Trait Implementations

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for BreakPane<'a>

impl<'a> Send for BreakPane<'a>

impl<'a> Sync for BreakPane<'a>

impl<'a> Unpin for BreakPane<'a>

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