rmux-server 0.10.0

Tokio daemon and request dispatcher for the RMUX terminal multiplexer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::ffi::OsString;
use std::io;

use super::CancellationState;

pub(super) fn try_read_fifo(_state: &CancellationState) -> Option<io::Result<Vec<u8>>> {
    None
}

pub(super) fn run_helper_if_requested<I>(_arguments: I) -> Option<i32>
where
    I: IntoIterator<Item = OsString>,
{
    None
}