tmux_interface 0.4.0

Rust language library for communication with TMUX via CLI
Documentation
1
2
3
4
5
6
7
8
#[test]
#[cfg(feature = "tmux_1_0")]
fn clock_mode_style() {
    use crate::ClockModeStyle;

    assert_eq!(ClockModeStyle::H12.to_string(), "12");
    assert_eq!(ClockModeStyle::H24.to_string(), "24");
}