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

pub struct DisplayMessage<'a> {
    pub list_format_vars: Option<bool>,
    pub forward_stdin: Option<bool>,
    pub print: Option<bool>,
    pub verbose: Option<bool>,
    pub target_client: Option<&'a str>,
    pub target_pane: Option<&'a str>,
    pub message: Option<&'a str>,
}

Structure for displaying a message

Manual

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

Fields

list_format_vars: Option<bool>

[-a] - list the format variables and their values

forward_stdin: Option<bool>

[-I] - forward any input read from stdin to the empty pane given by target-pane

print: Option<bool>

[-p] - the output is printed to stdout

verbose: Option<bool>

[-v] - print verbose logging as the format is parsed

target_client: Option<&'a str>

[-c target-client] - target-client

target_pane: Option<&'a str>

[-t target-pane] - target-pane

message: Option<&'a str>

[message] - message

Methods

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

pub fn new() -> Self[src]

Trait Implementations

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

impl<'a> Default 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, 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.