pub struct RefreshClientRequest {Show 15 fields
pub target_client: Option<String>,
pub adjustment: Option<u32>,
pub clear_pan: bool,
pub pan_left: bool,
pub pan_right: bool,
pub pan_up: bool,
pub pan_down: bool,
pub status_only: bool,
pub clipboard_query: bool,
pub flags: Option<String>,
pub flags_alias: Option<String>,
pub subscriptions: Vec<String>,
pub subscriptions_format: Vec<String>,
pub control_size: Option<String>,
pub colour_report: Option<String>,
}Expand description
Request payload for refresh-client.
Fields§
§target_client: Option<String>The optional target-client identifier or =.
adjustment: Option<u32>Reserved wire-v5 field for a client-pan adjustment.
RMUX 0.9 does not expose client panning and rejects a populated value fail-closed when received from an older client.
clear_pan: boolReserved wire-v5 field for clearing client panning.
pan_left: boolReserved wire-v5 field for panning the client view left.
pan_right: boolReserved wire-v5 field for panning the client view right.
pan_up: boolReserved wire-v5 field for panning the client view up.
pan_down: boolReserved wire-v5 field for panning the client view down.
status_only: boolWhether only the status line should be redrawn.
clipboard_query: boolWhether the client clipboard should be queried.
flags: Option<String>Optional client-flag string from -f.
flags_alias: Option<String>Optional client-flag string from -F, which tmux treats as an alias for -f.
subscriptions: Vec<String>Reserved wire-v5 field for control-mode subscription updates.
RMUX 0.9 does not expose refresh-client -A and rejects non-empty
values fail-closed when received from an older client.
subscriptions_format: Vec<String>Reserved wire-v5 field for control-mode subscription definitions.
RMUX 0.9 does not expose refresh-client -B and rejects non-empty
values fail-closed when received from an older client.
control_size: Option<String>Optional control-mode size string from -C.
colour_report: Option<String>Reserved wire-v5 field for control-mode colour reports.
RMUX 0.9 does not expose refresh-client -r and rejects a populated
value fail-closed when received from an older client.
Trait Implementations§
Source§impl Clone for RefreshClientRequest
impl Clone for RefreshClientRequest
Source§fn clone(&self) -> RefreshClientRequest
fn clone(&self) -> RefreshClientRequest
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more