pub struct SwitchClientExt3Request {
pub target_client: Option<String>,
pub target: Option<String>,
pub key_table: Option<String>,
pub last_session: bool,
pub next_session: bool,
pub previous_session: bool,
pub toggle_read_only: bool,
pub sort_order: Option<String>,
pub skip_environment_update: bool,
pub zoom: bool,
}Expand description
Further-extended request payload for switch-client.
Fields§
§target_client: Option<String>The optional target-client identifier or =.
target: Option<String>The optional tmux target string, including pane or window targets.
key_table: Option<String>The optional key table to set for the attached client.
last_session: boolWhether the client’s last session should be recalled.
next_session: boolWhether the next session in order should be selected.
previous_session: boolWhether the previous session in order should be selected.
toggle_read_only: boolWhether readonly mode should be toggled for the addressed client.
sort_order: Option<String>Optional tmux list-sorting token used by -n and -p.
skip_environment_update: boolWhether client environment updates should be skipped.
zoom: boolWhether zoom should be preserved when switching panes.
Trait Implementations§
Source§impl Clone for SwitchClientExt3Request
impl Clone for SwitchClientExt3Request
Source§fn clone(&self) -> SwitchClientExt3Request
fn clone(&self) -> SwitchClientExt3Request
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SwitchClientExt3Request
impl Debug for SwitchClientExt3Request
Source§impl<'de> Deserialize<'de> for SwitchClientExt3Request
impl<'de> Deserialize<'de> for SwitchClientExt3Request
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SwitchClientExt3Request
impl PartialEq for SwitchClientExt3Request
Source§fn eq(&self, other: &SwitchClientExt3Request) -> bool
fn eq(&self, other: &SwitchClientExt3Request) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SwitchClientExt3Request
impl Serialize for SwitchClientExt3Request
impl Eq for SwitchClientExt3Request
impl StructuralPartialEq for SwitchClientExt3Request
Auto Trait Implementations§
impl Freeze for SwitchClientExt3Request
impl RefUnwindSafe for SwitchClientExt3Request
impl Send for SwitchClientExt3Request
impl Sync for SwitchClientExt3Request
impl Unpin for SwitchClientExt3Request
impl UnsafeUnpin for SwitchClientExt3Request
impl UnwindSafe for SwitchClientExt3Request
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more