pub trait IInstallationBehavior_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn CanRequestUserInput(&self) -> Result<VARIANT_BOOL>;
    fn Impact(&self) -> Result<InstallationImpact>;
    fn RebootBehavior(&self) -> Result<InstallationRebootBehavior>;
    fn RequiresNetworkConnectivity(&self) -> Result<VARIANT_BOOL>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§