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

pub struct RefreshClient<'a> {
    pub tracking_cursor: Option<bool>,
    pub down: Option<bool>,
    pub request_clipboard: Option<bool>,
    pub left: Option<bool>,
    pub right: Option<bool>,
    pub status_line: Option<bool>,
    pub up: Option<bool>,
    pub size: Option<(usize, usize)>,
    pub flags: Option<&'a str>,
    pub target_client: Option<&'a str>,
    pub adjustment: Option<usize>,
}

Structure for refreshing the current client

Manual

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

Fields

tracking_cursor: Option<bool>

[-c] - return to tracking the cursor automatically

down: Option<bool>

[-D] - move the visible part of a window down by adjustment rows

request_clipboard: Option<bool>

[-l] - request the clipboard from the client using the xterm(1) escape sequence

left: Option<bool>

[-L] - move the visible part of a window left by adjustment columns

right: Option<bool>

[-R] - move the visible part of a window right by adjustment columns

status_line: Option<bool>

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

up: Option<bool>

[-U] - move the visible part of a window up by adjustment rows

size: Option<(usize, usize)>

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

flags: Option<&'a str>

[-F flags] - set a comma-separated list of flags

target_client: Option<&'a str>

[-t target-client] - specify the client

adjustment: Option<usize>

[adjustment] - moves the visible part up/down left/right by adjustment rows/columns

Methods

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

pub fn new() -> Self[src]

Trait Implementations

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

impl<'a> Default 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, 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.