pub struct ScInstallConfig {
pub service_type: WindowsServiceType,
pub start_type: WindowsStartType,
pub error_severity: WindowsErrorSeverity,
}
Expand description
Configuration settings tied to sc.exe services during installation
Fields§
§service_type: WindowsServiceType
Type of windows service for install
start_type: WindowsStartType
Start type for windows service for install
error_severity: WindowsErrorSeverity
Severity of the error if the windows service fails when the computer is started
Trait Implementations§
Source§impl Clone for ScInstallConfig
impl Clone for ScInstallConfig
Source§fn clone(&self) -> ScInstallConfig
fn clone(&self) -> ScInstallConfig
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 ScInstallConfig
impl Debug for ScInstallConfig
Source§impl Default for ScInstallConfig
impl Default for ScInstallConfig
Source§fn default() -> ScInstallConfig
fn default() -> ScInstallConfig
Returns the “default value” for a type. Read more
Source§impl PartialEq for ScInstallConfig
impl PartialEq for ScInstallConfig
impl Eq for ScInstallConfig
impl StructuralPartialEq for ScInstallConfig
Auto Trait Implementations§
impl Freeze for ScInstallConfig
impl RefUnwindSafe for ScInstallConfig
impl Send for ScInstallConfig
impl Sync for ScInstallConfig
impl Unpin for ScInstallConfig
impl UnwindSafe for ScInstallConfig
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.