Trait ISurrogateService_Impl
pub trait ISurrogateService_Impl: IUnknownImpl {
// Required methods
fn Init(
&self,
rguidprocessid: *const GUID,
pprocesslock: Ref<'_, IProcessLock>,
) -> Result<BOOL>;
fn ApplicationLaunch(
&self,
rguidapplid: *const GUID,
apptype: ApplicationType,
) -> Result<()>;
fn ApplicationFree(&self, rguidapplid: *const GUID) -> Result<()>;
fn CatalogRefresh(&self, ulreserved: u32) -> Result<()>;
fn ProcessShutdown(&self, shutdowntype: ShutdownType) -> Result<()>;
}
Required Methods§
fn Init( &self, rguidprocessid: *const GUID, pprocesslock: Ref<'_, IProcessLock>, ) -> Result<BOOL>
fn ApplicationLaunch( &self, rguidapplid: *const GUID, apptype: ApplicationType, ) -> Result<()>
fn ApplicationFree(&self, rguidapplid: *const GUID) -> Result<()>
fn CatalogRefresh(&self, ulreserved: u32) -> Result<()>
fn ProcessShutdown(&self, shutdowntype: ShutdownType) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.