pub enum WindowsStartType {
Boot,
System,
Auto,
Demand,
Disabled,
}
Variants§
Boot
Specifies a device driver that is loaded by the boot loader
System
Specifies a device driver that is started during kernel initialization
Auto
Specifies a service that automatically starts each time the computer is restarted. Note that the service runs even if no one logs on to the computer
Demand
Specifies a service that must be started manually
Disabled
Specifies a service that cannot be started. To start a disabled service, change the start type to some other value.
Trait Implementations§
Source§impl Clone for WindowsStartType
impl Clone for WindowsStartType
Source§fn clone(&self) -> WindowsStartType
fn clone(&self) -> WindowsStartType
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 WindowsStartType
impl Debug for WindowsStartType
Source§impl Default for WindowsStartType
impl Default for WindowsStartType
Source§impl Display for WindowsStartType
impl Display for WindowsStartType
Source§impl Hash for WindowsStartType
impl Hash for WindowsStartType
Source§impl PartialEq for WindowsStartType
impl PartialEq for WindowsStartType
impl Copy for WindowsStartType
impl Eq for WindowsStartType
impl StructuralPartialEq for WindowsStartType
Auto Trait Implementations§
impl Freeze for WindowsStartType
impl RefUnwindSafe for WindowsStartType
impl Send for WindowsStartType
impl Sync for WindowsStartType
impl Unpin for WindowsStartType
impl UnwindSafe for WindowsStartType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.