[][src]Struct tmux_interface::key_bindings::BindKey

pub struct BindKey<'a> {
    pub root: Option<bool>,
    pub repeat: Option<bool>,
    pub key_table: Option<&'a str>,
    pub key: &'a str,
    pub command: &'a str,
    pub arguments: Option<&'a str>,
}

Manual

tmux bind-key [-nr] [-T key-table] key command [arguments]
(alias: bind)

Fields

root: Option<bool>repeat: Option<bool>key_table: Option<&'a str>key: &'a strcommand: &'a strarguments: Option<&'a str>

Methods

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

pub fn new() -> Self[src]

Trait Implementations

impl<'a> Clone for BindKey<'a>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a> Default for BindKey<'a>[src]

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

Auto Trait Implementations

impl<'a> Sync for BindKey<'a>

impl<'a> Unpin for BindKey<'a>

impl<'a> Send for BindKey<'a>

impl<'a> UnwindSafe for BindKey<'a>

impl<'a> RefUnwindSafe for BindKey<'a>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]