job: Make Job struct private

This does not need to be public, and nothing was using it.
This commit is contained in:
Vicki Pfau 2024-07-18 16:06:45 -07:00
parent 603cd7217c
commit bc9cb4d414

View file

@ -28,7 +28,7 @@ pub struct JobManager {
next_job: u32,
}
pub struct Job {
struct Job {
process: Child,
paused: bool,
exit_code: Option<i32>,