pub enum ServiceStatus {
NotInstalled,
Stopped,
StartPending,
StopPending,
Running,
ContinuePending,
PausePending,
Paused,
}Expand description
The status of a service. Windows services can be in any of these states.
Linux/macOS services will only ever be NotInstalled, Running or Stopped.
Variants§
NotInstalled
The specified service is not installed.
Stopped
The specified service is stopped.
StartPending
The specified service is starting.
StopPending
The specified service is stopping.
Running
The specified service is running.
ContinuePending
The specified service is continuing.
PausePending
The specified service is pausing.
Paused
The specified service is paused.
Trait Implementations§
Source§impl Clone for ServiceStatus
impl Clone for ServiceStatus
Source§fn clone(&self) -> ServiceStatus
fn clone(&self) -> ServiceStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ServiceStatus
impl Debug for ServiceStatus
Source§impl PartialEq for ServiceStatus
impl PartialEq for ServiceStatus
impl Copy for ServiceStatus
impl StructuralPartialEq for ServiceStatus
Auto Trait Implementations§
impl Freeze for ServiceStatus
impl RefUnwindSafe for ServiceStatus
impl Send for ServiceStatus
impl Sync for ServiceStatus
impl Unpin for ServiceStatus
impl UnwindSafe for ServiceStatus
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