running-process-client 3.4.1

Lightweight synchronous IPC client for the running-process daemon
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod client;
pub mod paths;
pub mod pipe_session;
pub mod pty_session;

pub use client::{
    connect_or_start, daemonize_command, launch_detached, ClientError, DaemonClient,
    SpawnCommandRequest, SpawnedDaemon,
};
pub use pipe_session::{PipeSpawnRequest, PipeStreamAttachment, SpawnedPipeSession};
pub use pty_session::{AttachError, PtyAttachment, PtySpawnRequest, SpawnedPtySession};