pub trait IADsServiceOperations_Impl: Sized + IADs_Impl {
// Required methods
fn Status(&self) -> Result<i32>;
fn Start(&self) -> Result<()>;
fn Stop(&self) -> Result<()>;
fn Pause(&self) -> Result<()>;
fn Continue(&self) -> Result<()>;
fn SetPassword(&self, bstrnewpassword: &BSTR) -> Result<()>;
}
Required Methods§
fn Status(&self) -> Result<i32>
fn Start(&self) -> Result<()>
fn Stop(&self) -> Result<()>
fn Pause(&self) -> Result<()>
fn Continue(&self) -> Result<()>
fn SetPassword(&self, bstrnewpassword: &BSTR) -> Result<()>
Object Safety§
This trait is not object safe.