#[repr(u32)]pub enum ServiceErrorControl {
ErrorCritical = 3,
ErrorIgnore = 0,
ErrorNormal = 1,
ErrorSevere = 2,
}
Expand description
Defines the error control levels for a Windows service.
Variants§
Trait Implementations§
Source§impl Clone for ServiceErrorControl
impl Clone for ServiceErrorControl
Source§fn clone(&self) -> ServiceErrorControl
fn clone(&self) -> ServiceErrorControl
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 ServiceErrorControl
impl Debug for ServiceErrorControl
Source§impl Default for ServiceErrorControl
impl Default for ServiceErrorControl
Source§fn default() -> ServiceErrorControl
fn default() -> ServiceErrorControl
Returns the “default value” for a type. Read more
Source§impl PartialEq for ServiceErrorControl
impl PartialEq for ServiceErrorControl
impl Copy for ServiceErrorControl
impl StructuralPartialEq for ServiceErrorControl
Auto Trait Implementations§
impl Freeze for ServiceErrorControl
impl RefUnwindSafe for ServiceErrorControl
impl Send for ServiceErrorControl
impl Sync for ServiceErrorControl
impl Unpin for ServiceErrorControl
impl UnwindSafe for ServiceErrorControl
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