pub trait ISdoServiceControl_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn StartService(&self) -> Result<()>;
    fn StopService(&self) -> Result<()>;
    fn GetServiceStatus(&self) -> Result<i32>;
    fn ResetService(&self) -> Result<()>;
}

Required Methods§

fn StartService(&self) -> Result<()>

fn StopService(&self) -> Result<()>

fn GetServiceStatus(&self) -> Result<i32>

fn ResetService(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§