pub enum JobStatus {
New,
Running,
Stopped,
Done,
}
Expand description
Status of a Job.
Variants§
New
New job, not initialized.
Running
Running job.
Stopped
Job is paused in background.
Done
Job is done.
Trait Implementations§
impl Copy for JobStatus
impl Eq for JobStatus
impl StructuralPartialEq for JobStatus
Auto Trait Implementations§
impl Freeze for JobStatus
impl RefUnwindSafe for JobStatus
impl Send for JobStatus
impl Sync for JobStatus
impl Unpin for JobStatus
impl UnwindSafe for JobStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more