pub type Display<'a> = DisplayMessage<'a>;

Aliased Type§

struct Display<'a> {
    pub list_format_vars: bool,
    pub forward_stdin: bool,
    pub disable_format: bool,
    pub ignore_keys: bool,
    pub print: bool,
    pub verbose: bool,
    pub target_client: Option<Cow<'a, str>>,
    pub delay: Option<usize>,
    pub target_pane: Option<Cow<'a, str>>,
    pub message: Option<Cow<'a, str>>,
}

Fields§

§list_format_vars: bool

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

§forward_stdin: bool

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

§disable_format: bool

[-l] - message is printed unchanged

§ignore_keys: bool

[-N] - ignores key presses and closes only after the delay expires

§print: bool

[-p] - the output is printed to stdout

§verbose: bool

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

§target_client: Option<Cow<'a, str>>

[-c target-client] - target-client

§delay: Option<usize>

[-d delay] - delay

§target_pane: Option<Cow<'a, str>>

[-t target-pane] - target-pane

§message: Option<Cow<'a, str>>

[message] - message