pub enum WindowsServiceType {
Own,
Share,
Kernel,
FileSys,
Rec,
}
Variants§
Own
Service runs in its own process. It does not share an executable file with other services
Service runs as a shared process. It shares an executable file with other services
Kernel
Service is a driver
FileSys
Service is a file-system driver
Rec
Server is a file system recognized driver (identifies file systems used on the computer)
Trait Implementations§
Source§impl Clone for WindowsServiceType
impl Clone for WindowsServiceType
Source§fn clone(&self) -> WindowsServiceType
fn clone(&self) -> WindowsServiceType
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 WindowsServiceType
impl Debug for WindowsServiceType
Source§impl Default for WindowsServiceType
impl Default for WindowsServiceType
Source§impl Display for WindowsServiceType
impl Display for WindowsServiceType
Source§impl Hash for WindowsServiceType
impl Hash for WindowsServiceType
Source§impl PartialEq for WindowsServiceType
impl PartialEq for WindowsServiceType
impl Copy for WindowsServiceType
impl Eq for WindowsServiceType
impl StructuralPartialEq for WindowsServiceType
Auto Trait Implementations§
impl Freeze for WindowsServiceType
impl RefUnwindSafe for WindowsServiceType
impl Send for WindowsServiceType
impl Sync for WindowsServiceType
impl Unpin for WindowsServiceType
impl UnwindSafe for WindowsServiceType
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.