#[repr(C)]pub struct SERVICE_STATUS {
pub dwServiceType: DWORD,
pub dwCurrentState: DWORD,
pub dwControlsAccepted: DWORD,
pub dwWin32ExitCode: DWORD,
pub dwServiceSpecificExitCode: DWORD,
pub dwCheckPoint: DWORD,
pub dwWaitHint: DWORD,
}
Fields§
§dwServiceType: DWORD
§dwCurrentState: DWORD
§dwControlsAccepted: DWORD
§dwWin32ExitCode: DWORD
§dwServiceSpecificExitCode: DWORD
§dwCheckPoint: DWORD
§dwWaitHint: DWORD
Trait Implementations§
Source§impl Clone for SERVICE_STATUS
impl Clone for SERVICE_STATUS
Source§fn clone(&self) -> SERVICE_STATUS
fn clone(&self) -> SERVICE_STATUS
Returns a copy 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 Default for SERVICE_STATUS
impl Default for SERVICE_STATUS
Source§fn default() -> SERVICE_STATUS
fn default() -> SERVICE_STATUS
Returns the “default value” for a type. Read more
impl Copy for SERVICE_STATUS
Auto Trait Implementations§
impl Freeze for SERVICE_STATUS
impl RefUnwindSafe for SERVICE_STATUS
impl Send for SERVICE_STATUS
impl Sync for SERVICE_STATUS
impl Unpin for SERVICE_STATUS
impl UnwindSafe for SERVICE_STATUS
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