Struct tmux_interface::commands::windows_and_panes::link_window::LinkWindow[][src]

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

Link the window at src-window to the specified dst-window

Manual

tmux ^2.1:

tmux link-window [-adk] [-s src-window] [-t dst-window]
(alias: linkw)

tmux ^0.8:

tmux link-window [-dk] [-s src-window] [-t dst-window]
(alias: linkw)

Implementations

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

pub fn new() -> Self[src]

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

[-a] - the window is moved to the next index up

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

[-d] - the newly linked window is not selected

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

[-k] - if dst-window exists, it is killed, otherwise an error is generated

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

[-s src-window] - src-window

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 LinkWindow<'a>[src]

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for LinkWindow<'a>

impl<'a> Send for LinkWindow<'a>

impl<'a> Sync for LinkWindow<'a>

impl<'a> Unpin for LinkWindow<'a>

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