Struct tmux_interface::options::server_options::ServerOptions[][src]

pub struct ServerOptions {
    pub buffer_limit: Option<usize>,
    pub command_alias: Option<Vec<String>>,
    pub default_terminal: Option<String>,
    pub escape_time: Option<usize>,
    pub exit_empty: Option<Switch>,
    pub exit_unattached: Option<Switch>,
    pub focus_events: Option<Switch>,
    pub history_file: Option<String>,
    pub message_limit: Option<usize>,
    pub set_clipboard: Option<SetClipboard>,
    pub terminal_overrides: Option<Vec<String>>,
}

Fields

buffer_limit: Option<usize>command_alias: Option<Vec<String>>default_terminal: Option<String>escape_time: Option<usize>exit_empty: Option<Switch>exit_unattached: Option<Switch>focus_events: Option<Switch>history_file: Option<String>message_limit: Option<usize>set_clipboard: Option<SetClipboard>terminal_overrides: Option<Vec<String>>

Implementations

impl ServerOptions[src]

pub fn get_all() -> Result<Self, Error>[src]

pub fn get(bitflags: usize) -> Result<Self, Error>[src]

pub fn set(&self, bitflags: usize) -> Result<(), Error>[src]

Trait Implementations

impl Clone for ServerOptions[src]

impl Debug for ServerOptions[src]

impl Default for ServerOptions[src]

impl Display for ServerOptions[src]

impl FromStr for ServerOptions[src]

type Err = Error

The associated error which can be returned from parsing.

impl PartialEq<ServerOptions> for ServerOptions[src]

impl StructuralPartialEq for ServerOptions[src]

Auto Trait Implementations

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> ToString for T where
    T: Display + ?Sized
[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.