[][src]Struct tmux_interface::key_bindings::SendKeys

pub struct SendKeys<'a> {
    pub disable_lookup: Option<bool>,
    pub mouse_event: Option<bool>,
    pub copy_mode: Option<bool>,
    pub reset: Option<bool>,
    pub repeat_count: Option<usize>,
    pub target_pane: Option<&'a str>,
    pub key: Vec<&'a str>,
}

Manual

tmux send-keys [-lMRX] [-N repeat-count] [-t target-pane] key ...
(alias: send)

Fields

disable_lookup: Option<bool>mouse_event: Option<bool>copy_mode: Option<bool>reset: Option<bool>repeat_count: Option<usize>target_pane: Option<&'a str>key: Vec<&'a str>

Methods

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

pub fn new() -> Self[src]

Trait Implementations

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

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

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

Performs copy-assignment from source. Read more

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

Auto Trait Implementations

impl<'a> Send for SendKeys<'a>

impl<'a> Unpin for SendKeys<'a>

impl<'a> Sync for SendKeys<'a>

impl<'a> UnwindSafe for SendKeys<'a>

impl<'a> RefUnwindSafe for SendKeys<'a>

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.

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]