pub trait IEditionUpgradeBroker_Impl: Sized {
    // Required methods
    fn InitializeParentWindow(&self, parenthandle: OLE_HANDLE) -> Result<()>;
    fn UpdateOperatingSystem(&self, parameter: &BSTR) -> Result<()>;
    fn ShowProductKeyUI(&self) -> Result<()>;
    fn CanUpgrade(&self) -> Result<()>;
}

Required Methods§

fn InitializeParentWindow(&self, parenthandle: OLE_HANDLE) -> Result<()>

fn UpdateOperatingSystem(&self, parameter: &BSTR) -> Result<()>

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

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

Object Safety§

This trait is not object safe.

Implementors§