Struct tmux_interface::commands::status_line::display_message::DisplayMessage[][src]

pub struct DisplayMessage<'a>(pub TmuxCommand<'a>);

Structure for displaying a message

Manual

tmux ^3.0:

tmux display-message [-aIpv] [-c target-client] [-t target-pane] [message]
 (alias: display)

tmux ^2.9a:

tmux display-message [-apv] [-c target-client] [-t target-pane] [message]
 (alias: display)

tmux ^1.5:

tmux display-message [-p] [-c target-client] [-t target-pane] [message]
 (alias: display)

tmux ^1.2:

tmux display-message [-p] [-t target-client] [message]
 (alias: display)

tmux ^1.0:

tmux display-message [-t target-client] [message]
 (alias: display)

Implementations

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

pub fn new() -> Self[src]

pub fn target_client<S: Into<Cow<'a, str>>>(
    &mut self,
    target_client: S
) -> &mut Self
[src]

[-c target-client] - target-client

pub fn target_pane<S: Into<Cow<'a, str>>>(
    &mut self,
    target_pane: S
) -> &mut Self
[src]

[-t target-pane] - target-pane

pub fn message<S: Into<Cow<'a, str>>>(&mut self, message: S) -> &mut Self[src]

[message] - message

pub fn output(&self) -> Result<TmuxOutput, Error>[src]

Trait Implementations

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

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

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

impl<'a> From<&'_ TmuxCommand<'a>> for DisplayMessage<'a>[src]

impl<'a> From<TmuxCommand<'a>> for DisplayMessage<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for DisplayMessage<'a>

impl<'a> Send for DisplayMessage<'a>

impl<'a> Sync for DisplayMessage<'a>

impl<'a> Unpin for DisplayMessage<'a>

impl<'a> UnwindSafe for DisplayMessage<'a>

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, 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.