Struct tmux_interface::commands::clients_and_sessions::refresh_client::RefreshClient[][src]

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

Structure for refreshing the current client

Manual

tmux 3.0:

tmux refresh-client [-cDlLRSU] [-C XxY] [-F flags] [-t target-client] [adjustment]
(alias: refresh)

tmux 2.9a:

tmux refresh-client [-cDlLRSU] [-C width,height] [-F flags] [-t target-client] [adjustment]
(alias: refresh)

tmux 2.4:

tmux refresh-client [-C width,height] [-S] [-t target-client]
(alias: refresh)

tmux 1.6:

tmux refresh-client [-S] [-t target-client]
(alias: refresh)

tmux 0.8:

tmux refresh-client [-t target-client]
(alias: refresh)

Implementations

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

pub fn new() -> Self[src]

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

[-S] - only update the client’s status line

pub fn size(&mut self, size: (usize, usize)) -> &mut Self[src]

[-C X,Y] - set the width and height of a control client [-C XxY] - set the width and height of a control client

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

[-t target-client] - specify the client

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

Trait Implementations

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for RefreshClient<'a>

impl<'a> Send for RefreshClient<'a>

impl<'a> Sync for RefreshClient<'a>

impl<'a> Unpin for RefreshClient<'a>

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