Struct GetServerOptions

Source
pub struct GetServerOptions<'a> {
    pub options: TmuxCommands<'a>,
}

Fields§

§options: TmuxCommands<'a>

Trait Implementations§

Source§

impl<'a> Debug for GetServerOptions<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> GetServerOptionsTr<'a> for GetServerOptions<'a>

Source§

type Getter = GetServerOption

Source§

fn new() -> Self

Source§

fn push(&mut self, option: TmuxCommand<'a>)

Source§

fn push_cmds(&mut self, options: TmuxCommands<'a>)

Source§

fn build(self) -> TmuxCommands<'a>

Source§

fn backspace(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn buffer_limit(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn command_alias(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn copy_command(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn default_terminal(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn escape_time(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn editor(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn exit_empty(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn exit_unattached(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn extended_keys(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn focus_events(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn history_file(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn message_limit(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn prompt_history_limit(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn set_clipboard(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn terminal_features(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn terminal_overrides(self) -> Self
where Self: Sized,

Manual Read more
Source§

fn user_keys(self) -> Self
where Self: Sized,

Manual Read more
Source§

impl<'a> GetUserOptions<'a> for GetServerOptions<'a>

Source§

type Getter = GetServerOption

Source§

fn push(&mut self, option: TmuxCommand<'a>)

Source§

fn user_option<S>(self, name: S) -> Self
where Self: Sized, S: Into<Cow<'a, str>>,

Source§

fn user_option_ext<T, S>(self, target: Option<T>, name: S) -> Self
where Self: Sized, T: Into<Cow<'a, str>>, S: Into<Cow<'a, str>>,

Manual Read more

Auto Trait Implementations§

§

impl<'a> Freeze for GetServerOptions<'a>

§

impl<'a> RefUnwindSafe for GetServerOptions<'a>

§

impl<'a> Send for GetServerOptions<'a>

§

impl<'a> Sync for GetServerOptions<'a>

§

impl<'a> Unpin for GetServerOptions<'a>

§

impl<'a> UnwindSafe for GetServerOptions<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.