rightkit-process 0.1.0

Ownership-safe child lifecycle, restart, and health primitives for Right Suite apps.
Documentation
1
2
3
4
5
6
7
8
use std::num::NonZeroU32;

use rightkit_process::AdoptedProcess;

fn main() {
    let mut process = AdoptedProcess::new(NonZeroU32::new(42).unwrap());
    process.terminate_tree().unwrap();
}