Limit the CPU usage of a process.
```rust use cpulimiter::Pid;
// Only limit the target process Pid::from(1048).limit(10.0); // or also account for the children Pid::tryfrom("2096").unwrap().limitwith_children(42.0); ```