tmux_interface 0.3.2

Rust language library for communication with TMUX via CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(feature = "tmux_3_2")]
use std::borrow::Cow;

#[cfg(feature = "tmux_3_2")]
use crate::State;

// XXX: struct or tuple?
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
#[cfg(feature = "tmux_3_2")]
pub struct AllowActions<'a> {
    pub pane: Cow<'a, str>,
    pub state: State,
}